From 49827b550298cb259e9e6232be432d9e8d8e276f Mon Sep 17 00:00:00 2001 From: jremy Date: Mon, 30 Sep 2024 09:34:55 +0200 Subject: [PATCH 01/26] feat(mongodb): resource instance --- .../services/mongodb/cluster_data_source.go | 87 ++ .../mongodb/cluster_data_source_test.go | 50 + internal/services/mongodb/helpers.go | 92 ++ internal/services/mongodb/instance.go | 519 ++++++++++ internal/services/mongodb/instance_test.go | 931 ++++++++++++++++++ internal/services/mongodb/sweep_test.go | 16 + internal/services/mongodb/testfuncs/sweep.go | 43 + internal/services/mongodb/types.go | 144 +++ 8 files changed, 1882 insertions(+) create mode 100644 internal/services/mongodb/cluster_data_source.go create mode 100644 internal/services/mongodb/cluster_data_source_test.go create mode 100644 internal/services/mongodb/helpers.go create mode 100644 internal/services/mongodb/instance.go create mode 100644 internal/services/mongodb/instance_test.go create mode 100644 internal/services/mongodb/sweep_test.go create mode 100644 internal/services/mongodb/testfuncs/sweep.go create mode 100644 internal/services/mongodb/types.go diff --git a/internal/services/mongodb/cluster_data_source.go b/internal/services/mongodb/cluster_data_source.go new file mode 100644 index 0000000000..41b8fee54a --- /dev/null +++ b/internal/services/mongodb/cluster_data_source.go @@ -0,0 +1,87 @@ +package redis + +import ( + "context" + "fmt" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + "github.com/scaleway/scaleway-sdk-go/api/redis/v1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" +) + +func DataSourceCluster() *schema.Resource { + // Generate datasource schema from resource + dsSchema := datasource.SchemaFromResourceSchema(ResourceCluster().Schema) + // Set 'Optional' schema elements + datasource.AddOptionalFieldsToSchema(dsSchema, "name", "zone", "project_id") + + dsSchema["name"].ConflictsWith = []string{"cluster_id"} + dsSchema["cluster_id"] = &schema.Schema{ + Type: schema.TypeString, + Optional: true, + Description: "The ID of the Redis cluster", + ConflictsWith: []string{"name"}, + ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), + } + + return &schema.Resource{ + ReadContext: DataSourceClusterRead, + Schema: dsSchema, + } +} + +func DataSourceClusterRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, zone, err := newAPIWithZone(d, m) + if err != nil { + return diag.FromErr(err) + } + + clusterID, ok := d.GetOk("cluster_id") + if !ok { + clusterName := d.Get("name").(string) + res, err := api.ListClusters(&redis.ListClustersRequest{ + Zone: zone, + Name: types.ExpandStringPtr(clusterName), + ProjectID: types.ExpandStringPtr(d.Get("project_id")), + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + foundCluster, err := datasource.FindExact( + res.Clusters, + func(s *redis.Cluster) bool { return s.Name == clusterName }, + clusterName, + ) + if err != nil { + return diag.FromErr(err) + } + + clusterID = foundCluster.ID + } + + zonedID := datasource.NewZonedID(clusterID, zone) + d.SetId(zonedID) + err = d.Set("cluster_id", zonedID) + if err != nil { + return diag.FromErr(err) + } + + // Check if cluster exist as Read will return nil if resource does not exist + // clusterID may be zoned if using name in data source + getReq := &redis.GetClusterRequest{ + Zone: zone, + ClusterID: locality.ExpandID(clusterID.(string)), + } + _, err = api.GetCluster(getReq, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(fmt.Errorf("no clusters found with the id %s", clusterID)) + } + + return ResourceInstanceRead(ctx, d, m) +} diff --git a/internal/services/mongodb/cluster_data_source_test.go b/internal/services/mongodb/cluster_data_source_test.go new file mode 100644 index 0000000000..85e8a300c1 --- /dev/null +++ b/internal/services/mongodb/cluster_data_source_test.go @@ -0,0 +1,50 @@ +package redis_test + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" +) + +func TestAccDataSourceCluster_Basic(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "test" { + name = "test_redis_datasource_terraform" + version = "%s" + node_type = "RED1-micro" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } + + data "scaleway_redis_cluster" "test" { + name = scaleway_redis_cluster.test.name + } + + data "scaleway_redis_cluster" "test2" { + cluster_id = scaleway_redis_cluster.test.id + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.test"), + + resource.TestCheckResourceAttr("data.scaleway_redis_cluster.test", "name", "test_redis_datasource_terraform"), + resource.TestCheckResourceAttrSet("data.scaleway_redis_cluster.test", "id"), + + resource.TestCheckResourceAttr("data.scaleway_redis_cluster.test2", "name", "test_redis_datasource_terraform"), + resource.TestCheckResourceAttrSet("data.scaleway_redis_cluster.test2", "id"), + ), + }, + }, + }) +} diff --git a/internal/services/mongodb/helpers.go b/internal/services/mongodb/helpers.go new file mode 100644 index 0000000000..acf978adaa --- /dev/null +++ b/internal/services/mongodb/helpers.go @@ -0,0 +1,92 @@ +package redis + +import ( + "bytes" + "context" + "fmt" + "sort" + "time" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/api/redis/v1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/transport" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" +) + +const ( + defaultRedisClusterTimeout = 15 * time.Minute + defaultWaitRedisClusterRetryInterval = 5 * time.Second +) + +func newAPI(m interface{}) *mongodb.API { + return mongodb.NewAPI(meta.ExtractScwClient(m)) +} + +// newAPIWithZone returns a new Redis API and the zone for a Create request +func newAPIWithZone(d *schema.ResourceData, m interface{}) (*mongodb.API, scw.Zone, error) { + zone, err := meta.ExtractZone(d, m) + if err != nil { + return nil, "", err + } + return newAPI(m), zone, nil +} + +// NewAPIWithZoneAndID returns a Redis API with zone and ID extracted from the state +func NewAPIWithZoneAndID(m interface{}, id string) (*redis.API, scw.Zone, string, error) { + zone, ID, err := zonal.ParseID(id) + if err != nil { + return nil, "", "", err + } + return newAPI(m), zone, ID, nil +} + +func waitForInstance(ctx context.Context, api *mongodb.API, zone scw.Zone, id string, timeout time.Duration) (*redis.Cluster, error) { + retryInterval := defaultWaitRedisClusterRetryInterval + if transport.DefaultWaitRetryInterval != nil { + retryInterval = *transport.DefaultWaitRetryInterval + } + + return api.WaitForInstance() +} + +func waitForCluster(ctx context.Context, api *redis.API, zone scw.Zone, id string, timeout time.Duration) (*redis.Cluster, error) { + retryInterval := defaultWaitRedisClusterRetryInterval + if transport.DefaultWaitRetryInterval != nil { + retryInterval = *transport.DefaultWaitRetryInterval + } + + return api.WaitForCluster(&redis.WaitForClusterRequest{ + Zone: zone, + Timeout: scw.TimeDurationPtr(timeout), + ClusterID: id, + RetryInterval: &retryInterval, + }, scw.WithContext(ctx)) +} + +func privateNetworkSetHash(v interface{}) int { + var buf bytes.Buffer + + m := v.(map[string]interface{}) + if pnID, ok := m["id"]; ok { + buf.WriteString(locality.ExpandID(pnID)) + } + + if serviceIPs, ok := m["service_ips"]; ok { + // Sort the service IPs before generating the hash. + ips := serviceIPs.([]interface{}) + sort.Slice(ips, func(i, j int) bool { + return ips[i].(string) < ips[j].(string) + }) + + for i, item := range ips { + buf.WriteString(fmt.Sprintf("%d-%s-", i, item.(string))) + } + } + + return types.StringHashcode(buf.String()) +} diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go new file mode 100644 index 0000000000..29cd490be6 --- /dev/null +++ b/internal/services/mongodb/instance.go @@ -0,0 +1,519 @@ +package redis + +import ( + "context" + "errors" + "fmt" + "io" + "strings" + "time" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" + mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/api/redis/v1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/cdf" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" +) + +func ResourceInstance() *schema.Resource { + return &schema.Resource{ + CreateContext: ResourceInstanceCreate, + ReadContext: ResourceInstanceRead, + UpdateContext: ResourceInstanceUpdate, + DeleteContext: ResourceInstanceDelete, + Timeouts: &schema.ResourceTimeout{ + Create: schema.DefaultTimeout(defaultRedisClusterTimeout), + Update: schema.DefaultTimeout(defaultRedisClusterTimeout), + Delete: schema.DefaultTimeout(defaultRedisClusterTimeout), + Default: schema.DefaultTimeout(defaultRedisClusterTimeout), + }, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, + SchemaVersion: 0, + Schema: map[string]*schema.Schema{ + "name": { + Type: schema.TypeString, + Optional: true, + Computed: true, + Description: "Name of the mongoDB cluster", + }, + "version": { + Type: schema.TypeString, + Required: true, + Description: "Mongodb version of the instance", + }, + "node_number": { + Type: schema.TypeString, + Required: true, + Description: "number of node in the instance", + }, + "node_type": { + Type: schema.TypeString, + Required: true, + Description: "Type of node to use for the instance", + DiffSuppressFunc: dsf.IgnoreCase, + }, + "user_name": { + Type: schema.TypeString, + Required: true, + Description: "Name of the user created when the cluster is created", + }, + "password": { + Type: schema.TypeString, + Sensitive: true, + Required: true, + Description: "Password of the user", + }, + // volume + "volume_type": { + Type: schema.TypeInt, + Optional: true, + Computed: true, + Description: "Volume size of instance.", + }, + "volume_size": { + Type: schema.TypeInt, + Optional: true, + Computed: true, + Description: "Volume size of instance.", + }, + //endpoint + "private_network": { + Type: schema.TypeSet, + Optional: true, + Description: "Private network specs details", + Set: privateNetworkSetHash, + DiffSuppressFunc: func(k, oldValue, newValue string, _ *schema.ResourceData) bool { + // Check if the key is for the 'id' attribute + if strings.HasSuffix(k, "id") { + return locality.ExpandID(oldValue) == locality.ExpandID(newValue) + } + // For all other attributes, don't suppress the diff + return false + }, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Required: true, + ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), + Description: "UUID of the private network to be connected to the cluster", + }, + "service_ips": { + Type: schema.TypeList, + Optional: true, + Computed: true, + Elem: &schema.Schema{ + Type: schema.TypeString, + ValidateFunc: validation.IsCIDR, + }, + Description: "List of IPv4 addresses of the private network with a CIDR notation", + }, + // computed + "endpoint_id": { + Type: schema.TypeString, + Computed: true, + Description: "UUID of the endpoint to be connected to the cluster", + }, + "zone": zonal.ComputedSchema(), + }, + }, + }, + // Computed + "public_network": { + Type: schema.TypeList, + Optional: true, + Computed: true, + MaxItems: 1, + Description: "Public network specs details", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Computed: true, + }, + "port": { + Type: schema.TypeInt, + Computed: true, + Description: "TCP port of the endpoint", + }, + "ips": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Computed: true, + }, + }, + }, + }, + "tags": { + Type: schema.TypeList, + Optional: true, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Description: "List of tags [\"tag1\", \"tag2\", ...] attached to a redis cluster", + }, + "settings": { + Type: schema.TypeMap, + Description: "Map of settings to define for the instance.", + Optional: true, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the creation of the Redis cluster", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the last update of the Redis cluster", + }, + // Common + "zone": zonal.Schema(), + "project_id": account.ProjectIDSchema(), + }, + CustomizeDiff: customdiff.All( + cdf.LocalityCheck("private_network.#.id"), + customizeDiffMigrateClusterSize(), + ), + } +} + +// to modify +func customizeDiffMigrateClusterSize() schema.CustomizeDiffFunc { + return func(_ context.Context, diff *schema.ResourceDiff, _ interface{}) error { + oldSize, newSize := diff.GetChange("cluster_size") + if newSize == 2 { + return errors.New("cluster_size can be either 1 (standalone) ou >3 (cluster mode), not 2") + } + if oldSize == 1 && newSize != 1 || newSize.(int) < oldSize.(int) { + return diff.ForceNew("cluster_size") + } + return nil + } +} + +func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + mongodbAPI, zone, err := newAPIWithZone(d, m) + + if err != nil { + return diag.FromErr(err) + } + + createReq := &mongodb.CreateInstanceRequest{ + ProjectID: d.Get("project_id").(string), + Name: types.ExpandOrGenerateString(d.Get("name"), "redis"), + Version: d.Get("version").(string), + NodeType: d.Get("node_type").(string), + UserName: d.Get("user_name").(string), + Password: d.Get("password").(string), + } + + tags, tagsExist := d.GetOk("tags") + if tagsExist { + createReq.Tags = types.ExpandStrings(tags) + } + volumeSize, volumeSizeExist := d.GetOk("volume_size") + if volumeSizeExist { + createReq.Volume.VolumeSize = scw.Size(uint64(volumeSize.(int))) + } + + pn, pnExists := d.GetOk("private_network") + if pnExists { + pnSpecs, err := expandPrivateNetwork(pn.(*schema.Set).List()) + if err != nil { + return diag.FromErr(err) + } + createReq.Endpoints = pnSpecs + } + + res, err := mongodbAPI.CreateInstance(createReq, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + d.SetId(zonal.NewIDString(zone, res.ID)) + + _, err = waitForCluster(ctx, , zone, res.ID, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } + + return ResourceInstanceRead(ctx, d, m) +} + +func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + redisAPI, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + getReq := &redis.GetClusterRequest{ + Zone: zone, + ClusterID: ID, + } + cluster, err := redisAPI.GetCluster(getReq, scw.WithContext(ctx)) + if err != nil { + if httperrors.Is404(err) { + d.SetId("") + return nil + } + return diag.FromErr(err) + } + + _ = d.Set("name", cluster.Name) + _ = d.Set("node_type", cluster.NodeType) + _ = d.Set("user_name", d.Get("user_name").(string)) + _ = d.Set("password", d.Get("password").(string)) + _ = d.Set("zone", cluster.Zone.String()) + _ = d.Set("project_id", cluster.ProjectID) + _ = d.Set("version", cluster.Version) + _ = d.Set("cluster_size", int(cluster.ClusterSize)) + _ = d.Set("created_at", cluster.CreatedAt.Format(time.RFC3339)) + _ = d.Set("updated_at", cluster.UpdatedAt.Format(time.RFC3339)) + _ = d.Set("acl", flattenACLs(cluster.ACLRules)) + _ = d.Set("settings", flattenSettings(cluster.ClusterSettings)) + + if len(cluster.Tags) > 0 { + _ = d.Set("tags", cluster.Tags) + } + + // set endpoints + pnI, pnExists := flattenPrivateNetwork(cluster.Endpoints) + if pnExists { + _ = d.Set("private_network", pnI) + } + _ = d.Set("public_network", flattenPublicNetwork(cluster.Endpoints)) + + if cluster.TLSEnabled { + certificate, err := redisAPI.GetClusterCertificate(&redis.GetClusterCertificateRequest{ + Zone: zone, + ClusterID: cluster.ID, + }) + if err != nil { + return diag.FromErr(fmt.Errorf("failed to fetch cluster certificate: %w", err)) + } + + certificateContent, err := io.ReadAll(certificate.Content) + if err != nil { + return diag.FromErr(fmt.Errorf("failed to read cluster certificate: %w", err)) + } + + _ = d.Set("certificate", string(certificateContent)) + } else { + _ = d.Set("certificate", "") + } + + return nil +} + +func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + redisAPI, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + req := &redis.UpdateClusterRequest{ + Zone: zone, + ClusterID: ID, + } + + if d.HasChange("name") { + req.Name = types.ExpandStringPtr(d.Get("name")) + } + if d.HasChange("user_name") { + req.UserName = types.ExpandStringPtr(d.Get("user_name")) + } + if d.HasChange("password") { + req.Password = types.ExpandStringPtr(d.Get("password")) + } + if d.HasChange("tags") { + req.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) + } + if d.HasChange("acl") { + diagnostics := updateACL(ctx, d, redisAPI, zone, ID) + if diagnostics != nil { + return diagnostics + } + } + if d.HasChange("settings") { + diagnostics := updateSettings(ctx, d, redisAPI, zone, ID) + if diagnostics != nil { + return diagnostics + } + } + + _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutUpdate)) + if err != nil { + return diag.FromErr(err) + } + + _, err = redisAPI.UpdateCluster(req, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + migrateClusterRequests := []redis.MigrateClusterRequest(nil) + if d.HasChange("cluster_size") { + migrateClusterRequests = append(migrateClusterRequests, redis.MigrateClusterRequest{ + Zone: zone, + ClusterID: ID, + ClusterSize: scw.Uint32Ptr(uint32(d.Get("cluster_size").(int))), + }) + } + if d.HasChange("version") { + migrateClusterRequests = append(migrateClusterRequests, redis.MigrateClusterRequest{ + Zone: zone, + ClusterID: ID, + Version: types.ExpandStringPtr(d.Get("version")), + }) + } + if d.HasChange("node_type") { + migrateClusterRequests = append(migrateClusterRequests, redis.MigrateClusterRequest{ + Zone: zone, + ClusterID: ID, + NodeType: types.ExpandStringPtr(d.Get("node_type")), + }) + } + for i := range migrateClusterRequests { + _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutUpdate)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + _, err = redisAPI.MigrateCluster(&migrateClusterRequests[i], scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutUpdate)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + } + + if d.HasChanges("private_network") { + diagnostics := ResourceClusterUpdateEndpoints(ctx, d, redisAPI, zone, ID) + if diagnostics != nil { + return diagnostics + } + } + + _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutUpdate)) + if err != nil { + return diag.FromErr(err) + } + + return ResourceInstanceRead(ctx, d, m) +} + +func updateACL(ctx context.Context, d *schema.ResourceData, redisAPI *redis.API, zone scw.Zone, clusterID string) diag.Diagnostics { + rules, err := expandACLSpecs(d.Get("acl")) + if err != nil { + return diag.FromErr(err) + } + + _, err = redisAPI.SetACLRules(&redis.SetACLRulesRequest{ + Zone: zone, + ClusterID: clusterID, + ACLRules: rules, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + return nil +} + +func updateSettings(ctx context.Context, d *schema.ResourceData, redisAPI *redis.API, zone scw.Zone, clusterID string) diag.Diagnostics { + settings := expandSettings(d.Get("settings")) + + _, err := redisAPI.SetClusterSettings(&redis.SetClusterSettingsRequest{ + Zone: zone, + ClusterID: clusterID, + Settings: settings, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + return nil +} + +func ResourceClusterUpdateEndpoints(ctx context.Context, d *schema.ResourceData, redisAPI *redis.API, zone scw.Zone, clusterID string) diag.Diagnostics { + // retrieve state + cluster, err := waitForCluster(ctx, redisAPI, zone, clusterID, d.Timeout(schema.TimeoutUpdate)) + if err != nil { + return diag.FromErr(err) + } + + // get new desired state of endpoints + rawNewEndpoints := d.Get("private_network") + newEndpoints, err := expandPrivateNetwork(rawNewEndpoints.(*schema.Set).List()) + if err != nil { + return diag.FromErr(err) + } + if len(newEndpoints) == 0 { + newEndpoints = append(newEndpoints, &redis.EndpointSpec{ + PublicNetwork: &redis.EndpointSpecPublicNetworkSpec{}, + }) + } + // send request + _, err = redisAPI.SetEndpoints(&redis.SetEndpointsRequest{ + Zone: cluster.Zone, + ClusterID: cluster.ID, + Endpoints: newEndpoints, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitForCluster(ctx, redisAPI, zone, clusterID, d.Timeout(schema.TimeoutUpdate)) + if err != nil { + return diag.FromErr(err) + } + + return nil +} + +func ResourceInstanceDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + redisAPI, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutDelete)) + if err != nil { + return diag.FromErr(err) + } + + _, err = redisAPI.DeleteCluster(&redis.DeleteClusterRequest{ + Zone: zone, + ClusterID: ID, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutDelete)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + + return nil +} diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go new file mode 100644 index 0000000000..9bb8f72528 --- /dev/null +++ b/internal/services/mongodb/instance_test.go @@ -0,0 +1,931 @@ +package redis_test + +import ( + "crypto/x509" + "encoding/pem" + "errors" + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + redisSDK "github.com/scaleway/scaleway-sdk-go/api/redis/v1" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/redis" + vpcchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpc/testfuncs" +) + +func TestAccCluster_Basic(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_basic" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + tags = ["test1"] + cluster_size = 1 + tls_enabled = "true" + zone = "fr-par-2" + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_basic"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "zone", "fr-par-2"), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_basic_edit" + version = "%s" + node_type = "RED1-XS" + user_name = "new_user" + password = "thiZ_is_A_n3w_passw0rd" + tags = ["test1", "other_tag"] + cluster_size = 1 + tls_enabled = "true" + zone = "fr-par-2" + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_basic_edit"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "new_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_A_n3w_passw0rd"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.1", "other_tag"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "zone", "fr-par-2"), + ), + }, + }, + }) +} + +func TestAccCluster_Migrate(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_basic" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + tags = ["test1"] + cluster_size = 1 + tls_enabled = "true" + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_basic"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_basic" + version = "%s" + node_type = "RED1-S" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + tags = ["test1"] + cluster_size = 1 + tls_enabled = "true" + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_basic"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-S"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + ), + }, + }, + }) +} + +func TestAccCluster_MigrateClusterSizeWithIPAMEndpoint(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + clusterID := "" + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource scaleway_vpc_private_network private_network {} + + resource "scaleway_redis_cluster" "main" { + name = "test_redis_migrate_cluster_size_ipam" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 1 + tls_enabled = "true" + private_network { + id = scaleway_vpc_private_network.private_network.id + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_migrate_cluster_size_ipam"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + resource.TestCheckResourceAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.private_network", "id"), + acctest.CheckResourceIDPersisted("scaleway_redis_cluster.main", &clusterID), + ), + }, + { + Config: fmt.Sprintf(` + resource scaleway_vpc_private_network private_network {} + + resource "scaleway_redis_cluster" "main" { + name = "test_redis_migrate_cluster_size_ipam" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 3 + tls_enabled = "true" + private_network { + id = scaleway_vpc_private_network.private_network.id + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_migrate_cluster_size_ipam"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "3"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + resource.TestCheckResourceAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.private_network", "id"), + acctest.CheckResourceIDChanged("scaleway_redis_cluster.main", &clusterID), + ), + }, + }, + }) +} + +func TestAccCluster_MigrateClusterSizeWithStaticEndpoint(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + clusterID := "" + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource scaleway_vpc_private_network private_network {} + + resource "scaleway_redis_cluster" "main" { + name = "test_redis_migrate_cluster_size_static" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 1 + tls_enabled = "true" + private_network { + id = scaleway_vpc_private_network.private_network.id + service_ips = [ + "192.168.99.1/24", + ] + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_migrate_cluster_size_static"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "192.168.99.1/24"), + resource.TestCheckResourceAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.private_network", "id"), + acctest.CheckResourceIDPersisted("scaleway_redis_cluster.main", &clusterID), + ), + }, + { + Config: fmt.Sprintf(` + resource scaleway_vpc_private_network private_network {} + + resource "scaleway_redis_cluster" "main" { + name = "test_redis_migrate_cluster_size_static" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 3 + tls_enabled = "true" + private_network { + id = scaleway_vpc_private_network.private_network.id + service_ips = [ + "192.168.99.1/24", + "192.168.99.2/24", + "192.168.99.3/24", + "192.168.99.4/24", + "192.168.99.5/24", + ] + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_migrate_cluster_size_static"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "3"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "192.168.99.1/24"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.1", "192.168.99.2/24"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.2", "192.168.99.3/24"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.3", "192.168.99.4/24"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.4", "192.168.99.5/24"), + resource.TestCheckResourceAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.private_network", "id"), + acctest.CheckResourceIDChanged("scaleway_redis_cluster.main", &clusterID), + ), + }, + }, + }) +} + +func TestAccCluster_ACL(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_acl" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + acl { + ip = "0.0.0.0/0" + description = "An acl description" + } + acl { + ip = "192.168.10.0/24" + description = "A second acl description" + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_acl"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckTypeSetElemNestedAttrs("scaleway_redis_cluster.main", "acl.*", map[string]string{ + "ip": "0.0.0.0/0", + "description": "An acl description", + }), + resource.TestCheckTypeSetElemNestedAttrs("scaleway_redis_cluster.main", "acl.*", map[string]string{ + "ip": "192.168.10.0/24", + "description": "A second acl description", + }), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "acl.0.id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "acl.1.id"), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_acl" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + acl { + ip = "192.168.11.0/24" + description = "Another acl description" + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_acl"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "acl.0.ip", "192.168.11.0/24"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "acl.0.description", "Another acl description"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "acl.0.id"), + ), + }, + }, + }) +} + +func TestAccCluster_Settings(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_settings" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + settings = { + "tcp-keepalive" = "150" + "maxclients" = "5000" + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_settings"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "settings.tcp-keepalive", "150"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "settings.maxclients", "5000"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.port"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.ips.#"), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_settings" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + settings = { + "maxclients" = "2000" + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_settings"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "settings.maxclients", "2000"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.port"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.ips.#"), + ), + }, + }, + }) +} + +func TestAccCluster_Endpoints_Standalone(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + // Step 1: First we define a single private network + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "pn" { + name = "private-network" + } + resource "scaleway_redis_cluster" "main" { + name = "test_redis_endpoints" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 1 + private_network { + id = "${scaleway_vpc_private_network.pn.id}" + service_ips = [ + "10.12.1.0/20", + ] + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "10.12.1.0/20"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.endpoint_id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.id"), + resource.TestCheckTypeSetElemAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.pn", "id"), + ), + }, + { + // Step 2: Then we add another one + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "pn" { + name = "private-network" + } + resource "scaleway_vpc_private_network" "pn2" { + name = "private-network-2" + } + resource "scaleway_redis_cluster" "main" { + name = "test_redis_endpoints" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 1 + private_network { + id = "${scaleway_vpc_private_network.pn.id}" + service_ips = [ + "10.12.1.0/20", + ] + } + private_network { + id = "${scaleway_vpc_private_network.pn2.id}" + service_ips = [ + "192.168.1.0/20", + ] + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn"), + vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn2"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.endpoint_id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.1.id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.1.endpoint_id"), + privateNetworksIpsAreEither("scaleway_redis_cluster.main", "10.12.1.0/20", "192.168.1.0/20"), + privateNetworksIDsAreEither("scaleway_redis_cluster.main", "scaleway_vpc_private_network.pn", "scaleway_vpc_private_network.pn2"), + ), + }, + { + // Step 3: Then we modify the first one and remove the second one + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "pn" { + name = "private-network" + } + resource "scaleway_vpc_private_network" "pn2" { + name = "private-network-2" + } + resource "scaleway_redis_cluster" "main" { + name = "test_redis_endpoints" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 1 + private_network { + id = "${scaleway_vpc_private_network.pn.id}" + service_ips = [ + "10.13.1.0/20", + ] + } + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "10.13.1.0/20"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.endpoint_id"), + resource.TestCheckTypeSetElemAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.pn", "id"), + resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.1.service_ips.0"), + resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.1.id"), + resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.1.endpoint_id"), + ), + }, + { + // Step 4: And finally we remove the private network to check that we still have a public network + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "pn" { + name = "private-network" + } + resource "scaleway_vpc_private_network" "pn2" { + name = "private-network-2" + } + resource "scaleway_redis_cluster" "main" { + name = "test_redis_endpoints" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 1 + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.0.id"), + resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.0.port"), + resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.0.ips.#"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.port"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.ips.#"), + ), + }, + { + // Step 5: Extra step just to be sure that the cluster is deleted before the Private Networks + Config: ` + resource "scaleway_vpc_private_network" "pn" { + name = "private-network" + } + resource "scaleway_vpc_private_network" "pn2" { + name = "private-network-2" + } + `, + }, + }, + }) +} + +func TestAccCluster_Endpoints_ClusterMode(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + // Step 1: We define a single private network + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "pn" { + name = "private-network" + } + resource "scaleway_redis_cluster" "main" { + name = "test_redis_endpoints_cluster_mode" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + cluster_size = 3 + private_network { + id = "${scaleway_vpc_private_network.pn.id}" + service_ips = [ + "10.12.1.10/24", + "10.12.1.11/24", + "10.12.1.12/24", + ] + } + depends_on = [ + scaleway_vpc_private_network.pn, + ] + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints_cluster_mode"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "3"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "10.12.1.10/24"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.1", "10.12.1.11/24"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.2", "10.12.1.12/24"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.endpoint_id"), + resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.id"), + resource.TestCheckTypeSetElemAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.pn", "id"), + ), + }, + { + // Step 2: We delete the cluster, but keep the private network to be sure it's not deleted before + Config: ` + resource "scaleway_vpc_private_network" "pn" { + name = "private-network" + } + `, + }, + }, + }) +} + +func TestAccCluster_Certificate(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_certificate" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + tags = [ "test1" ] + cluster_size = 1 + tls_enabled = "true" + zone = "fr-par-2" + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_certificate"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "zone", "fr-par-2"), + isCertificateValid("scaleway_redis_cluster.main"), + ), + }, + }, + }) +} + +func TestAccCluster_NoCertificate(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isClusterDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_redis_cluster" "main" { + name = "test_redis_no_certificate" + version = "%s" + node_type = "RED1-XS" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + tags = [ "test1" ] + cluster_size = 1 + tls_enabled = "false" + zone = "fr-par-2" + } + `, latestRedisVersion), + Check: resource.ComposeTestCheckFunc( + isClusterPresent(tt, "scaleway_redis_cluster.main"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_no_certificate"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "false"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "zone", "fr-par-2"), + resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "certificate", ""), + ), + }, + }, + }) +} + +func isClusterDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { + return func(state *terraform.State) error { + for _, rs := range state.RootModule().Resources { + if rs.Type != "scaleway_redis_cluster" { + continue + } + + redisAPI, zone, ID, err := redis.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + _, err = redisAPI.GetCluster(&redisSDK.GetClusterRequest{ + ClusterID: ID, + Zone: zone, + }) + + if err == nil { + return fmt.Errorf("cluster (%s) still exists", rs.Primary.ID) + } + + if !httperrors.Is404(err) { + return err + } + } + return nil + } +} + +func isClusterPresent(tt *acctest.TestTools, n string) resource.TestCheckFunc { + return func(s *terraform.State) error { + rs, ok := s.RootModule().Resources[n] + if !ok { + return fmt.Errorf("resource not found: %s", n) + } + + redisAPI, zone, ID, err := redis.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + _, err = redisAPI.GetCluster(&redisSDK.GetClusterRequest{ + ClusterID: ID, + Zone: zone, + }) + if err != nil { + return err + } + return nil + } +} + +func privateNetworksIpsAreEither(name string, possibilities ...string) resource.TestCheckFunc { + return func(state *terraform.State) error { + rs, ok := state.RootModule().Resources[name] + if !ok { + return fmt.Errorf("resource not found: %s", name) + } + actualIPs := []string(nil) + for i := range possibilities { + actualIPs = append(actualIPs, rs.Primary.Attributes[fmt.Sprintf("private_network.%d.service_ips.0", i)]) + } + for _, ip := range actualIPs { + for i := range possibilities { + if possibilities[i] == ip { + possibilities[i] = "ip found" + } + } + } + for _, p := range possibilities { + if p != "ip found" { + return fmt.Errorf("no attribute private_network.*.service_ips.0 was found with value %v", p) + } + } + return nil + } +} + +func privateNetworksIDsAreEither(name string, possibilities ...string) resource.TestCheckFunc { + return func(state *terraform.State) error { + rs, ok := state.RootModule().Resources[name] + if !ok { + return fmt.Errorf("resource not found: %s", name) + } + for i, possibility := range possibilities { + rs, ok := state.RootModule().Resources[possibility] + if ok { + possibilities[i] = rs.Primary.ID + } + } + actualIDs := []string(nil) + for i := range possibilities { + toLookFor := fmt.Sprintf("private_network.%d.id", i) + id := rs.Primary.Attributes[toLookFor] + actualIDs = append(actualIDs, id) + } + for _, id := range actualIDs { + for i := range possibilities { + if possibilities[i] == id { + possibilities[i] = "id found" + } + } + } + for _, p := range possibilities { + if p != "id found" { + return fmt.Errorf("no attribute private_network.*.id was found with value %v", p) + } + } + return nil + } +} + +func isCertificateValid(name string) resource.TestCheckFunc { + return func(state *terraform.State) error { + rs, ok := state.RootModule().Resources[name] + if !ok { + return fmt.Errorf("resource not found: %s", name) + } + pemCert, hasCert := rs.Primary.Attributes["certificate"] + if !hasCert { + return errors.New("could not find certificate in schema") + } + cert, _ := pem.Decode([]byte(pemCert)) + _, err := x509.ParseCertificate(cert.Bytes) + if err != nil { + return fmt.Errorf("failed to parse certificate: %w", err) + } + return nil + } +} + +func getLatestVersion(tt *acctest.TestTools) string { + api := redisSDK.NewAPI(tt.Meta.ScwClient()) + + versions, err := api.ListClusterVersions(&redisSDK.ListClusterVersionsRequest{}) + if err != nil { + tt.T.Fatalf("Could not get latestK8SVersion: %s", err) + } + if len(versions.Versions) > 0 { + latestRedisVersion := versions.Versions[0].Version + return latestRedisVersion + } + return "" +} diff --git a/internal/services/mongodb/sweep_test.go b/internal/services/mongodb/sweep_test.go new file mode 100644 index 0000000000..6fc0e67c3c --- /dev/null +++ b/internal/services/mongodb/sweep_test.go @@ -0,0 +1,16 @@ +package redis_test + +import ( + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + redistestfuncs "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/redis/testfuncs" +) + +func init() { + redistestfuncs.AddTestSweepers() +} + +func TestMain(m *testing.M) { + resource.TestMain(m) +} diff --git a/internal/services/mongodb/testfuncs/sweep.go b/internal/services/mongodb/testfuncs/sweep.go new file mode 100644 index 0000000000..6ee1ba4902 --- /dev/null +++ b/internal/services/mongodb/testfuncs/sweep.go @@ -0,0 +1,43 @@ +package redistestfuncs + +import ( + "fmt" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + redisSDK "github.com/scaleway/scaleway-sdk-go/api/redis/v1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/logging" +) + +func AddTestSweepers() { + resource.AddTestSweepers("scaleway_redis_cluster", &resource.Sweeper{ + Name: "scaleway_redis_cluster", + F: testSweepRedisCluster, + }) +} + +func testSweepRedisCluster(_ string) error { + return acctest.SweepZones(scw.AllZones, func(scwClient *scw.Client, zone scw.Zone) error { + redisAPI := redisSDK.NewAPI(scwClient) + logging.L.Debugf("sweeper: destroying the redis cluster in (%s)", zone) + listClusters, err := redisAPI.ListClusters(&redisSDK.ListClustersRequest{ + Zone: zone, + }, scw.WithAllPages()) + if err != nil { + return fmt.Errorf("error listing redis clusters in (%s) in sweeper: %w", zone, err) + } + + for _, cluster := range listClusters.Clusters { + _, err := redisAPI.DeleteCluster(&redisSDK.DeleteClusterRequest{ + Zone: zone, + ClusterID: cluster.ID, + }) + if err != nil { + return fmt.Errorf("error deleting redis cluster in sweeper: %w", err) + } + } + + return nil + }) +} diff --git a/internal/services/mongodb/types.go b/internal/services/mongodb/types.go new file mode 100644 index 0000000000..c25def8aa4 --- /dev/null +++ b/internal/services/mongodb/types.go @@ -0,0 +1,144 @@ +package redis + +import ( + "fmt" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/api/redis/v1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" +) + +func expandPrivateNetwork(data []interface{}) ([]*mongodb.EndpointSpec, error) { + if data == nil { + return nil, nil + } + epSpecs := make([]*mongodb.EndpointSpec, 0, len(data)) + + for _, rawPN := range data { + pn := rawPN.(map[string]interface{}) + pnID := locality.ExpandID(pn["id"].(string)) + rawIPs := pn["service_ips"].([]interface{}) + ips := []scw.IPNet(nil) + spec := &mongodb.EndpointSpecPrivateNetworkDetails{ + PrivateNetworkID: pnID, + } + if len(rawIPs) != 0 { + for _, rawIP := range rawIPs { + ip, err := types.ExpandIPNet(rawIP.(string)) + if err != nil { + return epSpecs, err + } + ips = append(ips, ip) + } + spec.ServiceIPs = ips + } else { + spec.IpamConfig = &redis.EndpointSpecPrivateNetworkSpecIpamConfig{} + } + + epSpecs = append(epSpecs, &redis.EndpointSpec{PrivateNetwork: spec}) + } + return epSpecs, nil +} + +func expandACLSpecs(i interface{}) ([]*redis.ACLRuleSpec, error) { + rules := []*redis.ACLRuleSpec(nil) + + for _, aclRule := range i.(*schema.Set).List() { + rawRule := aclRule.(map[string]interface{}) + rule := &redis.ACLRuleSpec{} + if ruleDescription, hasDescription := rawRule["description"]; hasDescription { + rule.Description = ruleDescription.(string) + } + ip, err := types.ExpandIPNet(rawRule["ip"].(string)) + if err != nil { + return nil, fmt.Errorf("failed to validate acl ip (%s): %w", rawRule["ip"].(string), err) + } + rule.IPCidr = ip + rules = append(rules, rule) + } + + return rules, nil +} + +func flattenACLs(aclRules []*redis.ACLRule) interface{} { + flat := []map[string]interface{}(nil) + for _, acl := range aclRules { + flat = append(flat, map[string]interface{}{ + "id": acl.ID, + "ip": acl.IPCidr.String(), + "description": types.FlattenStringPtr(acl.Description), + }) + } + return flat +} + +func expandSettings(i interface{}) []*redis.ClusterSetting { + rawSettings := i.(map[string]interface{}) + settings := []*redis.ClusterSetting(nil) + for key, value := range rawSettings { + settings = append(settings, &redis.ClusterSetting{ + Name: key, + Value: value.(string), + }) + } + return settings +} + +func flattenSettings(settings []*redis.ClusterSetting) interface{} { + rawSettings := make(map[string]string) + for _, setting := range settings { + rawSettings[setting.Name] = setting.Value + } + return rawSettings +} + +func flattenPrivateNetwork(endpoints []*redis.Endpoint) (interface{}, bool) { + pnFlat := []map[string]interface{}(nil) + for _, endpoint := range endpoints { + if endpoint.PrivateNetwork == nil { + continue + } + pn := endpoint.PrivateNetwork + fetchRegion, err := pn.Zone.Region() + if err != nil { + return diag.FromErr(err), false + } + pnRegionalID := regional.NewIDString(fetchRegion, pn.ID) + serviceIps := []interface{}(nil) + for _, ip := range pn.ServiceIPs { + serviceIps = append(serviceIps, ip.String()) + } + pnFlat = append(pnFlat, map[string]interface{}{ + "endpoint_id": endpoint.ID, + "zone": pn.Zone, + "id": pnRegionalID, + "service_ips": serviceIps, + }) + } + return pnFlat, len(pnFlat) != 0 +} + +func flattenPublicNetwork(endpoints []*redis.Endpoint) interface{} { + pnFlat := []map[string]interface{}(nil) + for _, endpoint := range endpoints { + if endpoint.PublicNetwork == nil { + continue + } + ipsFlat := []interface{}(nil) + for _, ip := range endpoint.IPs { + ipsFlat = append(ipsFlat, ip.String()) + } + pnFlat = append(pnFlat, map[string]interface{}{ + "id": endpoint.ID, + "port": int(endpoint.Port), + "ips": ipsFlat, + }) + break + } + return pnFlat +} From 9569d5e995512078c6818d9541da9c0fb05c0e97 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 3 Oct 2024 16:44:10 +0200 Subject: [PATCH 02/26] feat(mongodb): add test for instance --- internal/provider/provider.go | 2 + internal/services/mongodb/instance.go | 331 +++----- internal/services/mongodb/instance_test.go | 916 ++------------------- 3 files changed, 209 insertions(+), 1040 deletions(-) diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 89239defeb..95c076de1e 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -31,6 +31,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/lb" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/marketplace" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mnq" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/object" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/rdb" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/redis" @@ -186,6 +187,7 @@ func Provider(config *Config) plugin.ProviderFunc { "scaleway_mnq_sqs": mnq.ResourceSQS(), "scaleway_mnq_sqs_credentials": mnq.ResourceSQSCredentials(), "scaleway_mnq_sqs_queue": mnq.ResourceSQSQueue(), + "scaleway_mongodb_instance": mongodb.ResourceInstance(), "scaleway_object": object.ResourceObject(), "scaleway_object_bucket": object.ResourceBucket(), "scaleway_object_bucket_acl": object.ResourceBucketACL(), diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index 29cd490be6..b0b50d9f9e 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -1,10 +1,8 @@ -package redis +package mongodb import ( "context" "errors" - "fmt" - "io" "strings" "time" @@ -13,7 +11,6 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" - "github.com/scaleway/scaleway-sdk-go/api/redis/v1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/cdf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" @@ -32,10 +29,10 @@ func ResourceInstance() *schema.Resource { UpdateContext: ResourceInstanceUpdate, DeleteContext: ResourceInstanceDelete, Timeouts: &schema.ResourceTimeout{ - Create: schema.DefaultTimeout(defaultRedisClusterTimeout), - Update: schema.DefaultTimeout(defaultRedisClusterTimeout), - Delete: schema.DefaultTimeout(defaultRedisClusterTimeout), - Default: schema.DefaultTimeout(defaultRedisClusterTimeout), + Create: schema.DefaultTimeout(defaultMongodbInstanceTimeout), + Update: schema.DefaultTimeout(defaultMongodbInstanceTimeout), + Delete: schema.DefaultTimeout(defaultMongodbInstanceTimeout), + Default: schema.DefaultTimeout(defaultMongodbInstanceTimeout), }, Importer: &schema.ResourceImporter{ StateContext: schema.ImportStatePassthroughContext, @@ -82,11 +79,12 @@ func ResourceInstance() *schema.Resource { Computed: true, Description: "Volume size of instance.", }, - "volume_size": { - Type: schema.TypeInt, - Optional: true, - Computed: true, - Description: "Volume size of instance.", + "volume_size_in_gb": { + Type: schema.TypeInt, + Optional: true, + Computed: true, + Description: "Volume size (in GB)", + ValidateFunc: validation.IntDivisibleBy(5), }, //endpoint "private_network": { @@ -110,7 +108,7 @@ func ResourceInstance() *schema.Resource { ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), Description: "UUID of the private network to be connected to the cluster", }, - "service_ips": { + "ips": { Type: schema.TypeList, Optional: true, Computed: true, @@ -120,6 +118,16 @@ func ResourceInstance() *schema.Resource { }, Description: "List of IPv4 addresses of the private network with a CIDR notation", }, + "port": { + Type: schema.TypeInt, + Computed: true, + Description: "The port of your load balancer service", + }, + "dns_record": { + Type: schema.TypeString, + Computed: true, + Description: "The dns_record of your endpoint", + }, // computed "endpoint_id": { Type: schema.TypeString, @@ -155,6 +163,11 @@ func ResourceInstance() *schema.Resource { }, Computed: true, }, + "dns_record": { + Type: schema.TypeString, + Computed: true, + Description: "The dns_record of your endpoint", + }, }, }, }, @@ -229,7 +242,7 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter if tagsExist { createReq.Tags = types.ExpandStrings(tags) } - volumeSize, volumeSizeExist := d.GetOk("volume_size") + volumeSize, volumeSizeExist := d.GetOk("volume_size_in_gb") if volumeSizeExist { createReq.Volume.VolumeSize = scw.Size(uint64(volumeSize.(int))) } @@ -250,7 +263,7 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter d.SetId(zonal.NewIDString(zone, res.ID)) - _, err = waitForCluster(ctx, , zone, res.ID, d.Timeout(schema.TimeoutCreate)) + _, err = waitForInstance(ctx, mongodbAPI, res.Region, res.ID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } @@ -259,16 +272,17 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter } func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - redisAPI, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + mongodbAPI, region, ID, err := NewAPIWithRegionAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } - getReq := &redis.GetClusterRequest{ - Zone: zone, - ClusterID: ID, + getReq := &mongodb.GetInstanceRequest{ + Region: region, + InstanceID: ID, } - cluster, err := redisAPI.GetCluster(getReq, scw.WithContext(ctx)) + + instance, err := mongodbAPI.GetInstance(getReq, scw.WithContext(ctx)) if err != nil { if httperrors.Is404(err) { d.SetId("") @@ -277,243 +291,172 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interfa return diag.FromErr(err) } - _ = d.Set("name", cluster.Name) - _ = d.Set("node_type", cluster.NodeType) - _ = d.Set("user_name", d.Get("user_name").(string)) - _ = d.Set("password", d.Get("password").(string)) - _ = d.Set("zone", cluster.Zone.String()) - _ = d.Set("project_id", cluster.ProjectID) - _ = d.Set("version", cluster.Version) - _ = d.Set("cluster_size", int(cluster.ClusterSize)) - _ = d.Set("created_at", cluster.CreatedAt.Format(time.RFC3339)) - _ = d.Set("updated_at", cluster.UpdatedAt.Format(time.RFC3339)) - _ = d.Set("acl", flattenACLs(cluster.ACLRules)) - _ = d.Set("settings", flattenSettings(cluster.ClusterSettings)) - - if len(cluster.Tags) > 0 { - _ = d.Set("tags", cluster.Tags) - } + _ = d.Set("name", instance.Name) + _ = d.Set("version", instance.Version) + _ = d.Set("node_number", instance.NodeNumber) + _ = d.Set("node_type", instance.NodeType) + _ = d.Set("project_id", instance.ProjectID) + _ = d.Set("tags", instance.Tags) + _ = d.Set("created_at", instance.CreatedAt.Format(time.RFC3339)) + _ = d.Set("region", instance.Region.String()) - // set endpoints - pnI, pnExists := flattenPrivateNetwork(cluster.Endpoints) - if pnExists { - _ = d.Set("private_network", pnI) + if instance.Volume != nil { + _ = d.Set("volume_type", instance.Volume.Type) + _ = d.Set("volume_size_in_gb", instance.Volume.Size) } - _ = d.Set("public_network", flattenPublicNetwork(cluster.Endpoints)) - if cluster.TLSEnabled { - certificate, err := redisAPI.GetClusterCertificate(&redis.GetClusterCertificateRequest{ - Zone: zone, - ClusterID: cluster.ID, - }) - if err != nil { - return diag.FromErr(fmt.Errorf("failed to fetch cluster certificate: %w", err)) - } + privateNetworkEndpoints, privateNetworkExists := flattenPrivateNetwork(m, instance.Endpoints, region) + if privateNetworkExists { + _ = d.Set("private_network", privateNetworkEndpoints) + } + _ = d.Set("public_network", flattenPublicNetwork(instance.Endpoints)) - certificateContent, err := io.ReadAll(certificate.Content) - if err != nil { - return diag.FromErr(fmt.Errorf("failed to read cluster certificate: %w", err)) + if len(instance.Settings) > 0 { + settingsMap := make(map[string]string) + for _, setting := range instance.Settings { + settingsMap[setting.Name] = setting.Value } - - _ = d.Set("certificate", string(certificateContent)) - } else { - _ = d.Set("certificate", "") + _ = d.Set("settings", settingsMap) } return nil } func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - redisAPI, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + mongodbAPI, region, ID, err := NewAPIWithRegionAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } - req := &redis.UpdateClusterRequest{ - Zone: zone, - ClusterID: ID, - } + //////////////////// + // Upgrade instance + //////////////////// - if d.HasChange("name") { - req.Name = types.ExpandStringPtr(d.Get("name")) - } - if d.HasChange("user_name") { - req.UserName = types.ExpandStringPtr(d.Get("user_name")) - } - if d.HasChange("password") { - req.Password = types.ExpandStringPtr(d.Get("password")) - } - if d.HasChange("tags") { - req.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) - } - if d.HasChange("acl") { - diagnostics := updateACL(ctx, d, redisAPI, zone, ID) - if diagnostics != nil { - return diagnostics - } - } - if d.HasChange("settings") { - diagnostics := updateSettings(ctx, d, redisAPI, zone, ID) - if diagnostics != nil { - return diagnostics + if d.HasChange("volume_size_in_gb") { + oldSizeInterface, newSizeInterface := d.GetChange("volume_size_in_gb") + oldSize := uint64(oldSizeInterface.(int)) + newSize := uint64(newSizeInterface.(int)) + if newSize < oldSize { + return diag.FromErr(errors.New("volume_size_in_gb cannot be decreased")) } - } - - _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutUpdate)) - if err != nil { - return diag.FromErr(err) - } - _, err = redisAPI.UpdateCluster(req, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) - } - - migrateClusterRequests := []redis.MigrateClusterRequest(nil) - if d.HasChange("cluster_size") { - migrateClusterRequests = append(migrateClusterRequests, redis.MigrateClusterRequest{ - Zone: zone, - ClusterID: ID, - ClusterSize: scw.Uint32Ptr(uint32(d.Get("cluster_size").(int))), - }) - } - if d.HasChange("version") { - migrateClusterRequests = append(migrateClusterRequests, redis.MigrateClusterRequest{ - Zone: zone, - ClusterID: ID, - Version: types.ExpandStringPtr(d.Get("version")), - }) - } - if d.HasChange("node_type") { - migrateClusterRequests = append(migrateClusterRequests, redis.MigrateClusterRequest{ - Zone: zone, - ClusterID: ID, - NodeType: types.ExpandStringPtr(d.Get("node_type")), - }) - } - for i := range migrateClusterRequests { - _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutUpdate)) - if err != nil && !httperrors.Is404(err) { - return diag.FromErr(err) + if newSize%5 != 0 { + return diag.FromErr(errors.New("volume_size_in_gb must be a multiple of 5")) } - _, err = redisAPI.MigrateCluster(&migrateClusterRequests[i], scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) + size := scw.Size(newSize) + + upgradeInstanceRequests := mongodb.UpgradeInstanceRequest{ + InstanceID: ID, + Region: region, + VolumeSize: &size, } - _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutUpdate)) - if err != nil && !httperrors.Is404(err) { + _, err = mongodbAPI.UpgradeInstance(&upgradeInstanceRequests, scw.WithContext(ctx)) + if err != nil { return diag.FromErr(err) } } - if d.HasChanges("private_network") { - diagnostics := ResourceClusterUpdateEndpoints(ctx, d, redisAPI, zone, ID) - if diagnostics != nil { - return diagnostics - } + req := &mongodb.UpdateInstanceRequest{ + Region: region, + InstanceID: ID, } - _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutUpdate)) - if err != nil { - return diag.FromErr(err) + if d.HasChange("name") { + req.Name = types.ExpandStringPtr(d.Get("name")) } - return ResourceInstanceRead(ctx, d, m) -} - -func updateACL(ctx context.Context, d *schema.ResourceData, redisAPI *redis.API, zone scw.Zone, clusterID string) diag.Diagnostics { - rules, err := expandACLSpecs(d.Get("acl")) - if err != nil { - return diag.FromErr(err) + if d.HasChange("tags") { + if tags := types.ExpandUpdatedStringsPtr(d.Get("tags")); tags != nil { + req.Tags = *tags + } } - _, err = redisAPI.SetACLRules(&redis.SetACLRulesRequest{ - Zone: zone, - ClusterID: clusterID, - ACLRules: rules, - }, scw.WithContext(ctx)) + _, err = mongodbAPI.UpdateInstance(req, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) } - return nil -} - -func updateSettings(ctx context.Context, d *schema.ResourceData, redisAPI *redis.API, zone scw.Zone, clusterID string) diag.Diagnostics { - settings := expandSettings(d.Get("settings")) + //////////////////// + // Update user + //////////////////// - _, err := redisAPI.SetClusterSettings(&redis.SetClusterSettingsRequest{ - Zone: zone, - ClusterID: clusterID, - Settings: settings, - }, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) + updateUserRequest := mongodb.UpdateUserRequest{ + Region: region, + InstanceID: ID, } - - return nil -} - -func ResourceClusterUpdateEndpoints(ctx context.Context, d *schema.ResourceData, redisAPI *redis.API, zone scw.Zone, clusterID string) diag.Diagnostics { - // retrieve state - cluster, err := waitForCluster(ctx, redisAPI, zone, clusterID, d.Timeout(schema.TimeoutUpdate)) - if err != nil { - return diag.FromErr(err) + if d.HasChange("user_name") { + updateUserRequest.Name = d.Get("user_name").(string) } - // get new desired state of endpoints - rawNewEndpoints := d.Get("private_network") - newEndpoints, err := expandPrivateNetwork(rawNewEndpoints.(*schema.Set).List()) - if err != nil { - return diag.FromErr(err) - } - if len(newEndpoints) == 0 { - newEndpoints = append(newEndpoints, &redis.EndpointSpec{ - PublicNetwork: &redis.EndpointSpecPublicNetworkSpec{}, - }) - } - // send request - _, err = redisAPI.SetEndpoints(&redis.SetEndpointsRequest{ - Zone: cluster.Zone, - ClusterID: cluster.ID, - Endpoints: newEndpoints, - }, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) + if d.HasChange("password") { + password := d.Get("password").(string) + updateUserRequest.Password = &password } - _, err = waitForCluster(ctx, redisAPI, zone, clusterID, d.Timeout(schema.TimeoutUpdate)) + _, err = mongodbAPI.UpdateUser(&updateUserRequest, scw.WithContext(ctx)) + // set endpoint ? + + _, err = waitForInstance(ctx, mongodbAPI, region, ID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) } - return nil + return ResourceInstanceRead(ctx, d, m) } +//func ResourceInstanceUpdateEndpoints(ctx context.Context, d *schema.ResourceData, mongodbAPI *mongodb.API, region scw.Region, instanceID string) diag.Diagnostics { +// // retrieve state +// +// instance, err := waitForInstance(ctx, mongodbAPI, region, instanceID, d.Timeout(schema.TimeoutUpdate)) +// if err != nil { +// return diag.FromErr(err) +// } +// +// // get new desired state of endpoints +// rawNewEndpoints := d.Get("private_network") +// newEndpoints, err := expandPrivateNetwork(rawNewEndpoints.(*schema.Set).List()) +// if err != nil { +// return diag.FromErr(err) +// } +// if len(newEndpoints) == 0 { +// newEndpoints = append(newEndpoints, &mongodb.EndpointSpec{ +// Public: &mongodb.EndpointSpecPublicDetails{}, +// }) +// } +// +// _, err = waitForInstance(ctx, reAPI, zone, clusterID, d.Timeout(schema.TimeoutUpdate)) +// if err != nil { +// return diag.FromErr(err) +// } +// +// return nil +//} + func ResourceInstanceDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - redisAPI, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + mongodbAPI, region, ID, err := NewAPIWithRegionAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } - _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutDelete)) + _, err = waitForInstance(ctx, mongodbAPI, region, ID, d.Timeout(schema.TimeoutDelete)) if err != nil { return diag.FromErr(err) } - _, err = redisAPI.DeleteCluster(&redis.DeleteClusterRequest{ - Zone: zone, - ClusterID: ID, + _, err = mongodbAPI.DeleteInstance(&mongodb.DeleteInstanceRequest{ + Region: region, + InstanceID: ID, }, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) } - _, err = waitForCluster(ctx, redisAPI, zone, ID, d.Timeout(schema.TimeoutDelete)) + _, err = waitForInstance(ctx, mongodbAPI, region, ID, d.Timeout(schema.TimeoutDelete)) if err != nil && !httperrors.Is404(err) { return diag.FromErr(err) } + d.SetId("") return nil } diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 9bb8f72528..7eabb8ad02 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -1,931 +1,155 @@ -package redis_test +package mongodb_test import ( - "crypto/x509" - "encoding/pem" - "errors" "fmt" "testing" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - redisSDK "github.com/scaleway/scaleway-sdk-go/api/redis/v1" + mongodbSDK "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/redis" - vpcchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpc/testfuncs" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb" + mongodbchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb/testfuncs" ) -func TestAccCluster_Basic(t *testing.T) { +func TestAccMongoDBInstance_Basic(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), + CheckDestroy: IsInstanceDestroyed(tt), Steps: []resource.TestStep{ { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_basic" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - tags = ["test1"] - cluster_size = 1 - tls_enabled = "true" - zone = "fr-par-2" - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_basic"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "zone", "fr-par-2"), - ), - }, - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_basic_edit" - version = "%s" - node_type = "RED1-XS" - user_name = "new_user" - password = "thiZ_is_A_n3w_passw0rd" - tags = ["test1", "other_tag"] - cluster_size = 1 - tls_enabled = "true" - zone = "fr-par-2" - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_basic_edit"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "new_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_A_n3w_passw0rd"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.1", "other_tag"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "zone", "fr-par-2"), - ), - }, - }, - }) -} - -func TestAccCluster_Migrate(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_basic" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - tags = ["test1"] - cluster_size = 1 - tls_enabled = "true" - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_basic"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - ), - }, - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_basic" - version = "%s" - node_type = "RED1-S" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - tags = ["test1"] - cluster_size = 1 - tls_enabled = "true" - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_basic"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-S"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - ), - }, - }, - }) -} - -func TestAccCluster_MigrateClusterSizeWithIPAMEndpoint(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) - clusterID := "" - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network private_network {} - - resource "scaleway_redis_cluster" "main" { - name = "test_redis_migrate_cluster_size_ipam" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - cluster_size = 1 - tls_enabled = "true" - private_network { - id = scaleway_vpc_private_network.private_network.id - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_migrate_cluster_size_ipam"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - resource.TestCheckResourceAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.private_network", "id"), - acctest.CheckResourceIDPersisted("scaleway_redis_cluster.main", &clusterID), - ), - }, - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network private_network {} - - resource "scaleway_redis_cluster" "main" { - name = "test_redis_migrate_cluster_size_ipam" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - cluster_size = 3 - tls_enabled = "true" - private_network { - id = scaleway_vpc_private_network.private_network.id - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_migrate_cluster_size_ipam"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "3"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - resource.TestCheckResourceAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.private_network", "id"), - acctest.CheckResourceIDChanged("scaleway_redis_cluster.main", &clusterID), - ), - }, - }, - }) -} - -func TestAccCluster_MigrateClusterSizeWithStaticEndpoint(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) - clusterID := "" - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network private_network {} - - resource "scaleway_redis_cluster" "main" { - name = "test_redis_migrate_cluster_size_static" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - cluster_size = 1 - tls_enabled = "true" - private_network { - id = scaleway_vpc_private_network.private_network.id - service_ips = [ - "192.168.99.1/24", - ] - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_migrate_cluster_size_static"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "192.168.99.1/24"), - resource.TestCheckResourceAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.private_network", "id"), - acctest.CheckResourceIDPersisted("scaleway_redis_cluster.main", &clusterID), - ), - }, - { - Config: fmt.Sprintf(` - resource scaleway_vpc_private_network private_network {} - - resource "scaleway_redis_cluster" "main" { - name = "test_redis_migrate_cluster_size_static" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - cluster_size = 3 - tls_enabled = "true" - private_network { - id = scaleway_vpc_private_network.private_network.id - service_ips = [ - "192.168.99.1/24", - "192.168.99.2/24", - "192.168.99.3/24", - "192.168.99.4/24", - "192.168.99.5/24", - ] - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_migrate_cluster_size_static"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "3"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "192.168.99.1/24"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.1", "192.168.99.2/24"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.2", "192.168.99.3/24"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.3", "192.168.99.4/24"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.4", "192.168.99.5/24"), - resource.TestCheckResourceAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.private_network", "id"), - acctest.CheckResourceIDChanged("scaleway_redis_cluster.main", &clusterID), - ), - }, - }, - }) -} - -func TestAccCluster_ACL(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_acl" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - acl { - ip = "0.0.0.0/0" - description = "An acl description" - } - acl { - ip = "192.168.10.0/24" - description = "A second acl description" - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_acl"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckTypeSetElemNestedAttrs("scaleway_redis_cluster.main", "acl.*", map[string]string{ - "ip": "0.0.0.0/0", - "description": "An acl description", - }), - resource.TestCheckTypeSetElemNestedAttrs("scaleway_redis_cluster.main", "acl.*", map[string]string{ - "ip": "192.168.10.0/24", - "description": "A second acl description", - }), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "acl.0.id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "acl.1.id"), - ), - }, - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_acl" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - acl { - ip = "192.168.11.0/24" - description = "Another acl description" - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_acl"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "acl.0.ip", "192.168.11.0/24"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "acl.0.description", "Another acl description"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "acl.0.id"), - ), - }, - }, - }) -} - -func TestAccCluster_Settings(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_settings" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - settings = { - "tcp-keepalive" = "150" - "maxclients" = "5000" - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_settings"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "settings.tcp-keepalive", "150"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "settings.maxclients", "5000"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.port"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.ips.#"), - ), - }, - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_settings" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - settings = { - "maxclients" = "2000" - } + Config: ` + resource scaleway_mongodb_instance main { + name = "test-mongodb-basic" + version = "4.4" + node_type = "db-dev-s" + node_number = "3" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" } - `, latestRedisVersion), + `, Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_settings"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "settings.maxclients", "2000"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.port"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.ips.#"), + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "name", "test-mongodb-basic"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_type", "db-dev-s"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "4.4"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_number", "3"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "user_name", "my_initial_user"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "password", "thiZ_is_v&ry_s3cret"), ), }, }, }) } -func TestAccCluster_Endpoints_Standalone(t *testing.T) { +func TestAccMongoDBInstance_VolumeUpdate(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), + CheckDestroy: IsInstanceDestroyed(tt), Steps: []resource.TestStep{ { - // Step 1: First we define a single private network - Config: fmt.Sprintf(` - resource "scaleway_vpc_private_network" "pn" { - name = "private-network" - } - resource "scaleway_redis_cluster" "main" { - name = "test_redis_endpoints" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - cluster_size = 1 - private_network { - id = "${scaleway_vpc_private_network.pn.id}" - service_ips = [ - "10.12.1.0/20", - ] - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "10.12.1.0/20"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.endpoint_id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.id"), - resource.TestCheckTypeSetElemAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.pn", "id"), - ), - }, - { - // Step 2: Then we add another one - Config: fmt.Sprintf(` - resource "scaleway_vpc_private_network" "pn" { - name = "private-network" - } - resource "scaleway_vpc_private_network" "pn2" { - name = "private-network-2" - } - resource "scaleway_redis_cluster" "main" { - name = "test_redis_endpoints" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - cluster_size = 1 - private_network { - id = "${scaleway_vpc_private_network.pn.id}" - service_ips = [ - "10.12.1.0/20", - ] - } - private_network { - id = "${scaleway_vpc_private_network.pn2.id}" - service_ips = [ - "192.168.1.0/20", - ] - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn"), - vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn2"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.endpoint_id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.1.id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.1.endpoint_id"), - privateNetworksIpsAreEither("scaleway_redis_cluster.main", "10.12.1.0/20", "192.168.1.0/20"), - privateNetworksIDsAreEither("scaleway_redis_cluster.main", "scaleway_vpc_private_network.pn", "scaleway_vpc_private_network.pn2"), - ), - }, - { - // Step 3: Then we modify the first one and remove the second one - Config: fmt.Sprintf(` - resource "scaleway_vpc_private_network" "pn" { - name = "private-network" - } - resource "scaleway_vpc_private_network" "pn2" { - name = "private-network-2" - } - resource "scaleway_redis_cluster" "main" { - name = "test_redis_endpoints" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - cluster_size = 1 - private_network { - id = "${scaleway_vpc_private_network.pn.id}" - service_ips = [ - "10.13.1.0/20", - ] - } - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "10.13.1.0/20"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.endpoint_id"), - resource.TestCheckTypeSetElemAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.pn", "id"), - resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.1.service_ips.0"), - resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.1.id"), - resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.1.endpoint_id"), - ), - }, - { - // Step 4: And finally we remove the private network to check that we still have a public network - Config: fmt.Sprintf(` - resource "scaleway_vpc_private_network" "pn" { - name = "private-network" - } - resource "scaleway_vpc_private_network" "pn2" { - name = "private-network-2" - } - resource "scaleway_redis_cluster" "main" { - name = "test_redis_endpoints" - version = "%s" - node_type = "RED1-XS" + Config: ` + resource scaleway_mongodb_instance main { + name = "test-mongodb-volume-update" + version = "4.4" + node_type = "db-dev-s" + node_number = "3" user_name = "my_initial_user" password = "thiZ_is_v&ry_s3cret" - cluster_size = 1 + volume_size_in_gb = 50 } - `, latestRedisVersion), + `, Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.0.id"), - resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.0.port"), - resource.TestCheckNoResourceAttr("scaleway_redis_cluster.main", "private_network.0.ips.#"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.port"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "public_network.0.ips.#"), + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "volume_size_in_gb", "50"), ), }, { - // Step 5: Extra step just to be sure that the cluster is deleted before the Private Networks Config: ` - resource "scaleway_vpc_private_network" "pn" { - name = "private-network" - } - resource "scaleway_vpc_private_network" "pn2" { - name = "private-network-2" + resource scaleway_mongodb_instance main { + name = "test-mongodb-volume-update" + version = "4.4" + node_type = "db-dev-s" + node_number = "3" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + volume_size_in_gb = 100 } `, - }, - }, - }) -} - -func TestAccCluster_Endpoints_ClusterMode(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), - Steps: []resource.TestStep{ - { - // Step 1: We define a single private network - Config: fmt.Sprintf(` - resource "scaleway_vpc_private_network" "pn" { - name = "private-network" - } - resource "scaleway_redis_cluster" "main" { - name = "test_redis_endpoints_cluster_mode" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - cluster_size = 3 - private_network { - id = "${scaleway_vpc_private_network.pn.id}" - service_ips = [ - "10.12.1.10/24", - "10.12.1.11/24", - "10.12.1.12/24", - ] - } - depends_on = [ - scaleway_vpc_private_network.pn, - ] - } - `, latestRedisVersion), Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - vpcchecks.IsPrivateNetworkPresent(tt, "scaleway_vpc_private_network.pn"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_endpoints_cluster_mode"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "3"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.0", "10.12.1.10/24"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.1", "10.12.1.11/24"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "private_network.0.service_ips.2", "10.12.1.12/24"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.endpoint_id"), - resource.TestCheckResourceAttrSet("scaleway_redis_cluster.main", "private_network.0.id"), - resource.TestCheckTypeSetElemAttrPair("scaleway_redis_cluster.main", "private_network.0.id", "scaleway_vpc_private_network.pn", "id"), + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "volume_size_in_gb", "100"), ), }, - { - // Step 2: We delete the cluster, but keep the private network to be sure it's not deleted before - Config: ` - resource "scaleway_vpc_private_network" "pn" { - name = "private-network" - } - `, - }, }, }) } -func TestAccCluster_Certificate(t *testing.T) { +func TestAccMongoDBInstance_PrivateNetwork(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) + resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), + CheckDestroy: mongodbchecks.IsInstanceDestroyed(tt), Steps: []resource.TestStep{ { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_certificate" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - tags = [ "test1" ] - cluster_size = 1 - tls_enabled = "true" - zone = "fr-par-2" + Config: ` + resource scaleway_vpc_private_network pn01 { + name = "test-mongodb-private-network" } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_certificate"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "true"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "zone", "fr-par-2"), - isCertificateValid("scaleway_redis_cluster.main"), - ), - }, - }, - }) -} -func TestAccCluster_NoCertificate(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "main" { - name = "test_redis_no_certificate" - version = "%s" - node_type = "RED1-XS" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - tags = [ "test1" ] - cluster_size = 1 - tls_enabled = "false" - zone = "fr-par-2" + resource scaleway_mongodb_instance main { + name = "test-mongodb-private-network" + version = "4.4" + node_type = "db-dev-s" + node_number = "3" + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + private_network { + id = scaleway_vpc_private_network.pn01.id + } } - `, latestRedisVersion), + `, Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.main"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "name", "test_redis_no_certificate"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "version", latestRedisVersion), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "node_type", "RED1-XS"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "user_name", "my_initial_user"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "password", "thiZ_is_v&ry_s3cret"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tags.0", "test1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "cluster_size", "1"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "tls_enabled", "false"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "zone", "fr-par-2"), - resource.TestCheckResourceAttr("scaleway_redis_cluster.main", "certificate", ""), + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "private_network.#", "1"), + resource.TestCheckResourceAttrPair("scaleway_mongodb_instance.main", "private_network.0.id", "scaleway_vpc_private_network.pn01", "id"), ), }, }, }) } -func isClusterDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { - return func(state *terraform.State) error { - for _, rs := range state.RootModule().Resources { - if rs.Type != "scaleway_redis_cluster" { - continue - } - - redisAPI, zone, ID, err := redis.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) - if err != nil { - return err - } - - _, err = redisAPI.GetCluster(&redisSDK.GetClusterRequest{ - ClusterID: ID, - Zone: zone, - }) - - if err == nil { - return fmt.Errorf("cluster (%s) still exists", rs.Primary.ID) - } - - if !httperrors.Is404(err) { - return err - } - } - return nil - } -} - -func isClusterPresent(tt *acctest.TestTools, n string) resource.TestCheckFunc { +func isMongoDBInstancePresent(tt *acctest.TestTools, n string) resource.TestCheckFunc { return func(s *terraform.State) error { rs, ok := s.RootModule().Resources[n] if !ok { return fmt.Errorf("resource not found: %s", n) } - redisAPI, zone, ID, err := redis.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + mongodbAPI, region, ID, err := mongodb.NewAPIWithRegionAndID(tt.Meta, rs.Primary.ID) if err != nil { return err } - _, err = redisAPI.GetCluster(&redisSDK.GetClusterRequest{ - ClusterID: ID, - Zone: zone, + _, err = mongodbAPI.GetInstance(&mongodbSDK.GetInstanceRequest{ + InstanceID: ID, + Region: region, }) if err != nil { return err } - return nil - } -} - -func privateNetworksIpsAreEither(name string, possibilities ...string) resource.TestCheckFunc { - return func(state *terraform.State) error { - rs, ok := state.RootModule().Resources[name] - if !ok { - return fmt.Errorf("resource not found: %s", name) - } - actualIPs := []string(nil) - for i := range possibilities { - actualIPs = append(actualIPs, rs.Primary.Attributes[fmt.Sprintf("private_network.%d.service_ips.0", i)]) - } - for _, ip := range actualIPs { - for i := range possibilities { - if possibilities[i] == ip { - possibilities[i] = "ip found" - } - } - } - for _, p := range possibilities { - if p != "ip found" { - return fmt.Errorf("no attribute private_network.*.service_ips.0 was found with value %v", p) - } - } - return nil - } -} -func privateNetworksIDsAreEither(name string, possibilities ...string) resource.TestCheckFunc { - return func(state *terraform.State) error { - rs, ok := state.RootModule().Resources[name] - if !ok { - return fmt.Errorf("resource not found: %s", name) - } - for i, possibility := range possibilities { - rs, ok := state.RootModule().Resources[possibility] - if ok { - possibilities[i] = rs.Primary.ID - } - } - actualIDs := []string(nil) - for i := range possibilities { - toLookFor := fmt.Sprintf("private_network.%d.id", i) - id := rs.Primary.Attributes[toLookFor] - actualIDs = append(actualIDs, id) - } - for _, id := range actualIDs { - for i := range possibilities { - if possibilities[i] == id { - possibilities[i] = "id found" - } - } - } - for _, p := range possibilities { - if p != "id found" { - return fmt.Errorf("no attribute private_network.*.id was found with value %v", p) - } - } return nil } } - -func isCertificateValid(name string) resource.TestCheckFunc { - return func(state *terraform.State) error { - rs, ok := state.RootModule().Resources[name] - if !ok { - return fmt.Errorf("resource not found: %s", name) - } - pemCert, hasCert := rs.Primary.Attributes["certificate"] - if !hasCert { - return errors.New("could not find certificate in schema") - } - cert, _ := pem.Decode([]byte(pemCert)) - _, err := x509.ParseCertificate(cert.Bytes) - if err != nil { - return fmt.Errorf("failed to parse certificate: %w", err) - } - return nil - } -} - -func getLatestVersion(tt *acctest.TestTools) string { - api := redisSDK.NewAPI(tt.Meta.ScwClient()) - - versions, err := api.ListClusterVersions(&redisSDK.ListClusterVersionsRequest{}) - if err != nil { - tt.T.Fatalf("Could not get latestK8SVersion: %s", err) - } - if len(versions.Versions) > 0 { - latestRedisVersion := versions.Versions[0].Version - return latestRedisVersion - } - return "" -} From dd3394f512081e6c5003adff77ec4f2e068ebfaf Mon Sep 17 00:00:00 2001 From: jremy Date: Wed, 9 Oct 2024 22:09:00 +0200 Subject: [PATCH 03/26] feat(mongodb): add basic test for instance --- .../services/mongodb/cluster_data_source.go | 87 -------------- .../mongodb/cluster_data_source_test.go | 50 --------- internal/services/mongodb/instance.go | 106 ++++++------------ internal/services/mongodb/instance_test.go | 50 +++++++-- internal/services/mongodb/snapshot.go | 1 + 5 files changed, 77 insertions(+), 217 deletions(-) delete mode 100644 internal/services/mongodb/cluster_data_source.go delete mode 100644 internal/services/mongodb/cluster_data_source_test.go create mode 100644 internal/services/mongodb/snapshot.go diff --git a/internal/services/mongodb/cluster_data_source.go b/internal/services/mongodb/cluster_data_source.go deleted file mode 100644 index 41b8fee54a..0000000000 --- a/internal/services/mongodb/cluster_data_source.go +++ /dev/null @@ -1,87 +0,0 @@ -package redis - -import ( - "context" - "fmt" - - "github.com/hashicorp/terraform-plugin-sdk/v2/diag" - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/scaleway/scaleway-sdk-go/api/redis/v1" - "github.com/scaleway/scaleway-sdk-go/scw" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" -) - -func DataSourceCluster() *schema.Resource { - // Generate datasource schema from resource - dsSchema := datasource.SchemaFromResourceSchema(ResourceCluster().Schema) - // Set 'Optional' schema elements - datasource.AddOptionalFieldsToSchema(dsSchema, "name", "zone", "project_id") - - dsSchema["name"].ConflictsWith = []string{"cluster_id"} - dsSchema["cluster_id"] = &schema.Schema{ - Type: schema.TypeString, - Optional: true, - Description: "The ID of the Redis cluster", - ConflictsWith: []string{"name"}, - ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), - } - - return &schema.Resource{ - ReadContext: DataSourceClusterRead, - Schema: dsSchema, - } -} - -func DataSourceClusterRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { - api, zone, err := newAPIWithZone(d, m) - if err != nil { - return diag.FromErr(err) - } - - clusterID, ok := d.GetOk("cluster_id") - if !ok { - clusterName := d.Get("name").(string) - res, err := api.ListClusters(&redis.ListClustersRequest{ - Zone: zone, - Name: types.ExpandStringPtr(clusterName), - ProjectID: types.ExpandStringPtr(d.Get("project_id")), - }, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) - } - - foundCluster, err := datasource.FindExact( - res.Clusters, - func(s *redis.Cluster) bool { return s.Name == clusterName }, - clusterName, - ) - if err != nil { - return diag.FromErr(err) - } - - clusterID = foundCluster.ID - } - - zonedID := datasource.NewZonedID(clusterID, zone) - d.SetId(zonedID) - err = d.Set("cluster_id", zonedID) - if err != nil { - return diag.FromErr(err) - } - - // Check if cluster exist as Read will return nil if resource does not exist - // clusterID may be zoned if using name in data source - getReq := &redis.GetClusterRequest{ - Zone: zone, - ClusterID: locality.ExpandID(clusterID.(string)), - } - _, err = api.GetCluster(getReq, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(fmt.Errorf("no clusters found with the id %s", clusterID)) - } - - return ResourceInstanceRead(ctx, d, m) -} diff --git a/internal/services/mongodb/cluster_data_source_test.go b/internal/services/mongodb/cluster_data_source_test.go deleted file mode 100644 index 85e8a300c1..0000000000 --- a/internal/services/mongodb/cluster_data_source_test.go +++ /dev/null @@ -1,50 +0,0 @@ -package redis_test - -import ( - "fmt" - "testing" - - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" -) - -func TestAccDataSourceCluster_Basic(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - latestRedisVersion := getLatestVersion(tt) - resource.ParallelTest(t, resource.TestCase{ - PreCheck: func() { acctest.PreCheck(t) }, - ProviderFactories: tt.ProviderFactories, - CheckDestroy: isClusterDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: fmt.Sprintf(` - resource "scaleway_redis_cluster" "test" { - name = "test_redis_datasource_terraform" - version = "%s" - node_type = "RED1-micro" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - } - - data "scaleway_redis_cluster" "test" { - name = scaleway_redis_cluster.test.name - } - - data "scaleway_redis_cluster" "test2" { - cluster_id = scaleway_redis_cluster.test.id - } - `, latestRedisVersion), - Check: resource.ComposeTestCheckFunc( - isClusterPresent(tt, "scaleway_redis_cluster.test"), - - resource.TestCheckResourceAttr("data.scaleway_redis_cluster.test", "name", "test_redis_datasource_terraform"), - resource.TestCheckResourceAttrSet("data.scaleway_redis_cluster.test", "id"), - - resource.TestCheckResourceAttr("data.scaleway_redis_cluster.test2", "name", "test_redis_datasource_terraform"), - resource.TestCheckResourceAttrSet("data.scaleway_redis_cluster.test2", "id"), - ), - }, - }, - }) -} diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index b0b50d9f9e..ff00048ef9 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -16,6 +16,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" @@ -51,7 +52,7 @@ func ResourceInstance() *schema.Resource { Description: "Mongodb version of the instance", }, "node_number": { - Type: schema.TypeString, + Type: schema.TypeInt, Required: true, Description: "number of node in the instance", }, @@ -74,9 +75,9 @@ func ResourceInstance() *schema.Resource { }, // volume "volume_type": { - Type: schema.TypeInt, + Type: schema.TypeString, + Default: mongodb.VolumeTypeSbs5k, Optional: true, - Computed: true, Description: "Volume size of instance.", }, "volume_size_in_gb": { @@ -123,7 +124,7 @@ func ResourceInstance() *schema.Resource { Computed: true, Description: "The port of your load balancer service", }, - "dns_record": { + "dns_records": { Type: schema.TypeString, Computed: true, Description: "The dns_record of your endpoint", @@ -156,13 +157,6 @@ func ResourceInstance() *schema.Resource { Computed: true, Description: "TCP port of the endpoint", }, - "ips": { - Type: schema.TypeList, - Elem: &schema.Schema{ - Type: schema.TypeString, - }, - Computed: true, - }, "dns_record": { Type: schema.TypeString, Computed: true, @@ -177,7 +171,7 @@ func ResourceInstance() *schema.Resource { Elem: &schema.Schema{ Type: schema.TypeString, }, - Description: "List of tags [\"tag1\", \"tag2\", ...] attached to a redis cluster", + Description: "List of tags [\"tag1\", \"tag2\", ...] attached to a Mongodb instance", }, "settings": { Type: schema.TypeMap, @@ -190,7 +184,7 @@ func ResourceInstance() *schema.Resource { "created_at": { Type: schema.TypeString, Computed: true, - Description: "The date and time of the creation of the Redis cluster", + Description: "The date and time of the creation of the Mongodb instance", }, "updated_at": { Type: schema.TypeString, @@ -198,30 +192,15 @@ func ResourceInstance() *schema.Resource { Description: "The date and time of the last update of the Redis cluster", }, // Common - "zone": zonal.Schema(), + "region": regional.Schema(), "project_id": account.ProjectIDSchema(), }, CustomizeDiff: customdiff.All( cdf.LocalityCheck("private_network.#.id"), - customizeDiffMigrateClusterSize(), ), } } -// to modify -func customizeDiffMigrateClusterSize() schema.CustomizeDiffFunc { - return func(_ context.Context, diff *schema.ResourceDiff, _ interface{}) error { - oldSize, newSize := diff.GetChange("cluster_size") - if newSize == 2 { - return errors.New("cluster_size can be either 1 (standalone) ou >3 (cluster mode), not 2") - } - if oldSize == 1 && newSize != 1 || newSize.(int) < oldSize.(int) { - return diff.ForceNew("cluster_size") - } - return nil - } -} - func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { mongodbAPI, zone, err := newAPIWithZone(d, m) @@ -229,22 +208,31 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter return diag.FromErr(err) } + nodeNumber := scw.Uint32Ptr(uint32(d.Get("node_number").(int))) createReq := &mongodb.CreateInstanceRequest{ - ProjectID: d.Get("project_id").(string), - Name: types.ExpandOrGenerateString(d.Get("name"), "redis"), - Version: d.Get("version").(string), - NodeType: d.Get("node_type").(string), - UserName: d.Get("user_name").(string), - Password: d.Get("password").(string), + ProjectID: d.Get("project_id").(string), + Name: types.ExpandOrGenerateString(d.Get("name"), "mongodb"), + Version: d.Get("version").(string), + NodeType: d.Get("node_type").(string), + NodeNumber: *nodeNumber, + UserName: d.Get("user_name").(string), + Password: d.Get("password").(string), } - tags, tagsExist := d.GetOk("tags") - if tagsExist { - createReq.Tags = types.ExpandStrings(tags) + volumeRequestDetails := &mongodb.CreateInstanceRequestVolumeDetails{ + VolumeType: mongodb.VolumeType(d.Get("volume_type").(string)), } volumeSize, volumeSizeExist := d.GetOk("volume_size_in_gb") if volumeSizeExist { - createReq.Volume.VolumeSize = scw.Size(uint64(volumeSize.(int))) + volumeRequestDetails.VolumeSize = scw.Size(uint64(volumeSize.(int)) * uint64(scw.GB)) + } else { + volumeRequestDetails.VolumeSize = scw.Size(defaultVolumeSize * uint64(scw.GB)) + } + createReq.Volume = volumeRequestDetails + + tags, tagsExist := d.GetOk("tags") + if tagsExist { + createReq.Tags = types.ExpandStrings(tags) } pn, pnExists := d.GetOk("private_network") @@ -254,6 +242,10 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter return diag.FromErr(err) } createReq.Endpoints = pnSpecs + } else { + epSpecs := make([]*mongodb.EndpointSpec, 0, 1) + spec := &mongodb.EndpointSpecPublicDetails{} + createReq.Endpoints = append(epSpecs, &mongodb.EndpointSpec{Public: spec}) } res, err := mongodbAPI.CreateInstance(createReq, scw.WithContext(ctx)) @@ -305,11 +297,14 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interfa _ = d.Set("volume_size_in_gb", instance.Volume.Size) } - privateNetworkEndpoints, privateNetworkExists := flattenPrivateNetwork(m, instance.Endpoints, region) + privateNetworkEndpoints, privateNetworkExists := flattenPrivateNetwork(instance.Endpoints) if privateNetworkExists { _ = d.Set("private_network", privateNetworkEndpoints) } - _ = d.Set("public_network", flattenPublicNetwork(instance.Endpoints)) + publicNetworkEndpoint, publicNetworkExists := flattenPublicNetwork(instance.Endpoints) + if publicNetworkExists { + _ = d.Set("public_network", publicNetworkEndpoint) + } if len(instance.Settings) > 0 { settingsMap := make(map[string]string) @@ -395,7 +390,6 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter } _, err = mongodbAPI.UpdateUser(&updateUserRequest, scw.WithContext(ctx)) - // set endpoint ? _, err = waitForInstance(ctx, mongodbAPI, region, ID, d.Timeout(schema.TimeoutCreate)) if err != nil { @@ -405,34 +399,6 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter return ResourceInstanceRead(ctx, d, m) } -//func ResourceInstanceUpdateEndpoints(ctx context.Context, d *schema.ResourceData, mongodbAPI *mongodb.API, region scw.Region, instanceID string) diag.Diagnostics { -// // retrieve state -// -// instance, err := waitForInstance(ctx, mongodbAPI, region, instanceID, d.Timeout(schema.TimeoutUpdate)) -// if err != nil { -// return diag.FromErr(err) -// } -// -// // get new desired state of endpoints -// rawNewEndpoints := d.Get("private_network") -// newEndpoints, err := expandPrivateNetwork(rawNewEndpoints.(*schema.Set).List()) -// if err != nil { -// return diag.FromErr(err) -// } -// if len(newEndpoints) == 0 { -// newEndpoints = append(newEndpoints, &mongodb.EndpointSpec{ -// Public: &mongodb.EndpointSpecPublicDetails{}, -// }) -// } -// -// _, err = waitForInstance(ctx, reAPI, zone, clusterID, d.Timeout(schema.TimeoutUpdate)) -// if err != nil { -// return diag.FromErr(err) -// } -// -// return nil -//} - func ResourceInstanceDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { mongodbAPI, region, ID, err := NewAPIWithRegionAndID(m, d.Id()) if err != nil { diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 7eabb8ad02..1f5600b2a5 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -8,8 +8,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" mongodbSDK "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb" - mongodbchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb/testfuncs" ) func TestAccMongoDBInstance_Basic(t *testing.T) { @@ -24,20 +24,20 @@ func TestAccMongoDBInstance_Basic(t *testing.T) { { Config: ` resource scaleway_mongodb_instance main { - name = "test-mongodb-basic" - version = "4.4" - node_type = "db-dev-s" - node_number = "3" + name = "test-mongodb-basic1" + version = "7.0.11" + node_type = "MGDB-PRO2-XXS" + node_number = 1 user_name = "my_initial_user" password = "thiZ_is_v&ry_s3cret" } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "name", "test-mongodb-basic"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_type", "db-dev-s"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "4.4"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_number", "3"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "name", "test-mongodb-basic1"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_type", "mgdb-pro2-xxs"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0.11"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_number", "1"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "user_name", "my_initial_user"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "password", "thiZ_is_v&ry_s3cret"), ), @@ -100,7 +100,7 @@ func TestAccMongoDBInstance_PrivateNetwork(t *testing.T) { resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, ProviderFactories: tt.ProviderFactories, - CheckDestroy: mongodbchecks.IsInstanceDestroyed(tt), + CheckDestroy: IsInstanceDestroyed(tt), Steps: []resource.TestStep{ { Config: ` @@ -153,3 +153,33 @@ func isMongoDBInstancePresent(tt *acctest.TestTools, n string) resource.TestChec return nil } } + +func IsInstanceDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { + return func(state *terraform.State) error { + for _, rs := range state.RootModule().Resources { + if rs.Type != "scaleway_mongodb_instance" { + continue + } + + mongodbAPI, zone, ID, err := mongodb.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + extractRegion, err := zone.Region() + instance, err := mongodbAPI.GetInstance(&mongodbSDK.GetInstanceRequest{ + InstanceID: ID, + Region: extractRegion, + }) + _ = instance + + if err == nil { + return fmt.Errorf("instance (%s) still exists", rs.Primary.ID) + } + if !httperrors.Is404(err) { + return err + } + } + return nil + } +} diff --git a/internal/services/mongodb/snapshot.go b/internal/services/mongodb/snapshot.go new file mode 100644 index 0000000000..6e5989133c --- /dev/null +++ b/internal/services/mongodb/snapshot.go @@ -0,0 +1 @@ +package mongodb From 95bc4888562271c1e145ac877454ef94cf0136b7 Mon Sep 17 00:00:00 2001 From: jremy Date: Fri, 11 Oct 2024 17:02:38 +0200 Subject: [PATCH 04/26] feat(mongodb): add snapshot and test --- internal/provider/provider.go | 1 + internal/services/mongodb/helpers.go | 81 ++++++-- internal/services/mongodb/instance.go | 134 ++++++++---- internal/services/mongodb/instance_test.go | 74 ++++--- internal/services/mongodb/snapshot.go | 203 +++++++++++++++++++ internal/services/mongodb/snapshot_test.go | 131 ++++++++++++ internal/services/mongodb/sweep_test.go | 6 +- internal/services/mongodb/testfuncs/sweep.go | 35 ++-- internal/services/mongodb/types.go | 120 ++--------- 9 files changed, 571 insertions(+), 214 deletions(-) create mode 100644 internal/services/mongodb/snapshot_test.go diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 95c076de1e..394b37b09f 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -188,6 +188,7 @@ func Provider(config *Config) plugin.ProviderFunc { "scaleway_mnq_sqs_credentials": mnq.ResourceSQSCredentials(), "scaleway_mnq_sqs_queue": mnq.ResourceSQSQueue(), "scaleway_mongodb_instance": mongodb.ResourceInstance(), + "scaleway_mongodb_snapshot": mongodb.ResourceSnapshot(), "scaleway_object": object.ResourceObject(), "scaleway_object_bucket": object.ResourceBucket(), "scaleway_object_bucket_acl": object.ResourceBucketACL(), diff --git a/internal/services/mongodb/helpers.go b/internal/services/mongodb/helpers.go index acf978adaa..50528d953b 100644 --- a/internal/services/mongodb/helpers.go +++ b/internal/services/mongodb/helpers.go @@ -1,4 +1,4 @@ -package redis +package mongodb import ( "bytes" @@ -9,7 +9,6 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" - "github.com/scaleway/scaleway-sdk-go/api/redis/v1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" @@ -19,8 +18,13 @@ import ( ) const ( - defaultRedisClusterTimeout = 15 * time.Minute - defaultWaitRedisClusterRetryInterval = 5 * time.Second + defaultMongodbInstanceTimeout = 15 * time.Minute + defaultMongodbSnapshotTimeout = 15 * time.Minute + defaultWaitMongodbInstanceRetryInterval = 5 * time.Second +) + +const ( + defaultVolumeSize = 5 ) func newAPI(m interface{}) *mongodb.API { @@ -36,8 +40,28 @@ func newAPIWithZone(d *schema.ResourceData, m interface{}) (*mongodb.API, scw.Zo return newAPI(m), zone, nil } +func newAPIWithZoneAndRegion(d *schema.ResourceData, m interface{}) (*mongodb.API, scw.Zone, scw.Region, error) { + zone, err := meta.ExtractZone(d, m) + if err != nil { + return nil, "", "", err + } + region, err := meta.ExtractRegion(d, m) + if err != nil { + return nil, "", "", err + } + return newAPI(m), zone, region, nil +} + +func newAPIWithRegion(d *schema.ResourceData, m interface{}) (*mongodb.API, scw.Region, error) { + region, err := meta.ExtractRegion(d, m) + if err != nil { + return nil, "", err + } + return newAPI(m), region, nil +} + // NewAPIWithZoneAndID returns a Redis API with zone and ID extracted from the state -func NewAPIWithZoneAndID(m interface{}, id string) (*redis.API, scw.Zone, string, error) { +func NewAPIWithZoneAndID(m interface{}, id string) (*mongodb.API, scw.Zone, string, error) { zone, ID, err := zonal.ParseID(id) if err != nil { return nil, "", "", err @@ -45,25 +69,54 @@ func NewAPIWithZoneAndID(m interface{}, id string) (*redis.API, scw.Zone, string return newAPI(m), zone, ID, nil } -func waitForInstance(ctx context.Context, api *mongodb.API, zone scw.Zone, id string, timeout time.Duration) (*redis.Cluster, error) { - retryInterval := defaultWaitRedisClusterRetryInterval +func NewAPIWithRegionAndID(m interface{}, id string) (*mongodb.API, scw.Region, string, error) { + zone, ID, err := zonal.ParseID(id) + if err != nil { + return nil, "", "", err + } + region, err := zone.Region() + if err != nil { + return nil, "", "", err + } + return newAPI(m), region, ID, nil +} + +func NewAPIWithID(m interface{}, id string) (*mongodb.API, scw.Region, string, error) { + zone, ID, err := zonal.ParseID(id) + if err != nil { + return nil, "", "", err + } + region, err := zone.Region() + if err != nil { + return nil, "", "", err + } + return newAPI(m), region, ID, nil +} + +func waitForInstance(ctx context.Context, api *mongodb.API, region scw.Region, id string, timeout time.Duration) (*mongodb.Instance, error) { + retryInterval := defaultWaitMongodbInstanceRetryInterval if transport.DefaultWaitRetryInterval != nil { retryInterval = *transport.DefaultWaitRetryInterval } - - return api.WaitForInstance() + return api.WaitForInstance(&mongodb.WaitForInstanceRequest{ + Timeout: scw.TimeDurationPtr(timeout), + InstanceID: id, + Region: region, + RetryInterval: &retryInterval, + }, scw.WithContext(ctx)) } -func waitForCluster(ctx context.Context, api *redis.API, zone scw.Zone, id string, timeout time.Duration) (*redis.Cluster, error) { - retryInterval := defaultWaitRedisClusterRetryInterval +func waitForSnapshot(ctx context.Context, api *mongodb.API, region scw.Region, instanceID string, snapshotID string, timeout time.Duration) (*mongodb.Snapshot, error) { + retryInterval := defaultWaitMongodbInstanceRetryInterval if transport.DefaultWaitRetryInterval != nil { retryInterval = *transport.DefaultWaitRetryInterval } - return api.WaitForCluster(&redis.WaitForClusterRequest{ - Zone: zone, + return api.WaitForSnapshot(&mongodb.WaitForSnapshotRequest{ Timeout: scw.TimeDurationPtr(timeout), - ClusterID: id, + InstanceID: instanceID, + SnapshotID: snapshotID, + Region: region, RetryInterval: &retryInterval, }, scw.WithContext(ctx)) } diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index ff00048ef9..1a651d996b 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -3,6 +3,7 @@ package mongodb import ( "context" "errors" + "fmt" "strings" "time" @@ -48,12 +49,12 @@ func ResourceInstance() *schema.Resource { }, "version": { Type: schema.TypeString, - Required: true, + Optional: true, Description: "Mongodb version of the instance", }, "node_number": { Type: schema.TypeInt, - Required: true, + Optional: true, Description: "number of node in the instance", }, "node_type": { @@ -64,13 +65,13 @@ func ResourceInstance() *schema.Resource { }, "user_name": { Type: schema.TypeString, - Required: true, + Optional: true, Description: "Name of the user created when the cluster is created", }, "password": { Type: schema.TypeString, Sensitive: true, - Required: true, + Optional: true, Description: "Password of the user", }, // volume @@ -87,6 +88,12 @@ func ResourceInstance() *schema.Resource { Description: "Volume size (in GB)", ValidateFunc: validation.IntDivisibleBy(5), }, + "snapshot_id": { + Type: schema.TypeString, + Optional: true, + ForceNew: true, + Description: "Snapshot id", + }, //endpoint "private_network": { Type: schema.TypeSet, @@ -189,7 +196,7 @@ func ResourceInstance() *schema.Resource { "updated_at": { Type: schema.TypeString, Computed: true, - Description: "The date and time of the last update of the Redis cluster", + Description: "The date and time of the last update of the Mongodb instance", }, // Common "region": regional.Schema(), @@ -197,6 +204,25 @@ func ResourceInstance() *schema.Resource { }, CustomizeDiff: customdiff.All( cdf.LocalityCheck("private_network.#.id"), + func(ctx context.Context, diff *schema.ResourceDiff, v interface{}) error { + snapshotID := diff.Get("snapshot_id") + + if snapshotID == nil || snapshotID == "" { + if diff.Get("user_name") == nil || diff.Get("user_name") == "" { + return fmt.Errorf("`user_name` must be provided when `snapshot_id` is not set") + } + if diff.Get("password") == nil || diff.Get("password") == "" { + return fmt.Errorf("`password` must be provided when `snapshot_id` is not set") + } + if diff.Get("version") == nil || diff.Get("version") == "" { + return fmt.Errorf("`version` must be provided when `snapshot_id` is not set") + } + if diff.Get("node_number") == nil || diff.Get("node_number") == "" { + return fmt.Errorf("`node_number` must be provided when `snapshot_id` is not set") + } + } + return nil + }, ), } } @@ -209,52 +235,70 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter } nodeNumber := scw.Uint32Ptr(uint32(d.Get("node_number").(int))) - createReq := &mongodb.CreateInstanceRequest{ - ProjectID: d.Get("project_id").(string), - Name: types.ExpandOrGenerateString(d.Get("name"), "mongodb"), - Version: d.Get("version").(string), - NodeType: d.Get("node_type").(string), - NodeNumber: *nodeNumber, - UserName: d.Get("user_name").(string), - Password: d.Get("password").(string), - } - volumeRequestDetails := &mongodb.CreateInstanceRequestVolumeDetails{ - VolumeType: mongodb.VolumeType(d.Get("volume_type").(string)), - } - volumeSize, volumeSizeExist := d.GetOk("volume_size_in_gb") - if volumeSizeExist { - volumeRequestDetails.VolumeSize = scw.Size(uint64(volumeSize.(int)) * uint64(scw.GB)) + snapshotID, exist := d.GetOk("snapshot_id") + res := &mongodb.Instance{} + if exist { + volume := &mongodb.RestoreSnapshotRequestVolumeDetails{ + VolumeType: mongodb.VolumeType(d.Get("volume_type").(string)), + } + restoreSnapshotRequest := &mongodb.RestoreSnapshotRequest{ + SnapshotID: snapshotID.(string), + InstanceName: types.ExpandOrGenerateString(d.Get("name"), "mongodb"), + NodeType: d.Get("node_type").(string), + Volume: volume, + } + res, err = mongodbAPI.RestoreSnapshot(restoreSnapshotRequest, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } } else { - volumeRequestDetails.VolumeSize = scw.Size(defaultVolumeSize * uint64(scw.GB)) - } - createReq.Volume = volumeRequestDetails - tags, tagsExist := d.GetOk("tags") - if tagsExist { - createReq.Tags = types.ExpandStrings(tags) - } + createReq := &mongodb.CreateInstanceRequest{ + ProjectID: d.Get("project_id").(string), + Name: types.ExpandOrGenerateString(d.Get("name"), "mongodb"), + Version: d.Get("version").(string), + NodeType: d.Get("node_type").(string), + NodeNumber: *nodeNumber, + UserName: d.Get("user_name").(string), + Password: d.Get("password").(string), + } + + volumeRequestDetails := &mongodb.CreateInstanceRequestVolumeDetails{ + VolumeType: mongodb.VolumeType(d.Get("volume_type").(string)), + } + volumeSize, volumeSizeExist := d.GetOk("volume_size_in_gb") + if volumeSizeExist { + volumeRequestDetails.VolumeSize = scw.Size(uint64(volumeSize.(int)) * uint64(scw.GB)) + } else { + volumeRequestDetails.VolumeSize = scw.Size(defaultVolumeSize * uint64(scw.GB)) + } + createReq.Volume = volumeRequestDetails - pn, pnExists := d.GetOk("private_network") - if pnExists { - pnSpecs, err := expandPrivateNetwork(pn.(*schema.Set).List()) + tags, tagsExist := d.GetOk("tags") + if tagsExist { + createReq.Tags = types.ExpandStrings(tags) + } + + pn, pnExists := d.GetOk("private_network") + if pnExists { + pnSpecs, err := expandPrivateNetwork(pn.(*schema.Set).List()) + if err != nil { + return diag.FromErr(err) + } + createReq.Endpoints = pnSpecs + } else { + epSpecs := make([]*mongodb.EndpointSpec, 0, 1) + spec := &mongodb.EndpointSpecPublicDetails{} + createReq.Endpoints = append(epSpecs, &mongodb.EndpointSpec{Public: spec}) + } + + res, err = mongodbAPI.CreateInstance(createReq, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) } - createReq.Endpoints = pnSpecs - } else { - epSpecs := make([]*mongodb.EndpointSpec, 0, 1) - spec := &mongodb.EndpointSpecPublicDetails{} - createReq.Endpoints = append(epSpecs, &mongodb.EndpointSpec{Public: spec}) } - - res, err := mongodbAPI.CreateInstance(createReq, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) - } - d.SetId(zonal.NewIDString(zone, res.ID)) - _, err = waitForInstance(ctx, mongodbAPI, res.Region, res.ID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) @@ -294,7 +338,7 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interfa if instance.Volume != nil { _ = d.Set("volume_type", instance.Volume.Type) - _ = d.Set("volume_size_in_gb", instance.Volume.Size) + _ = d.Set("volume_size_in_gb", int(instance.Volume.Size/scw.GB)) } privateNetworkEndpoints, privateNetworkExists := flattenPrivateNetwork(instance.Endpoints) @@ -338,7 +382,7 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter if newSize%5 != 0 { return diag.FromErr(errors.New("volume_size_in_gb must be a multiple of 5")) } - size := scw.Size(newSize) + size := scw.Size(newSize * uint64(scw.GB)) upgradeInstanceRequests := mongodb.UpgradeInstanceRequest{ InstanceID: ID, @@ -350,6 +394,8 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter if err != nil { return diag.FromErr(err) } + _, err = waitForInstance(ctx, mongodbAPI, region, ID, d.Timeout(schema.TimeoutUpdate)) + } req := &mongodb.UpdateInstanceRequest{ diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 1f5600b2a5..7007e38cd6 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -25,8 +25,8 @@ func TestAccMongoDBInstance_Basic(t *testing.T) { Config: ` resource scaleway_mongodb_instance main { name = "test-mongodb-basic1" - version = "7.0.11" - node_type = "MGDB-PRO2-XXS" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" node_number = 1 user_name = "my_initial_user" password = "thiZ_is_v&ry_s3cret" @@ -35,8 +35,8 @@ func TestAccMongoDBInstance_Basic(t *testing.T) { Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "name", "test-mongodb-basic1"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_type", "mgdb-pro2-xxs"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0.11"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_type", "mgdb-play2-nano"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "version", "7.0.12"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "node_number", "1"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "user_name", "my_initial_user"), resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "password", "thiZ_is_v&ry_s3cret"), @@ -58,42 +58,42 @@ func TestAccMongoDBInstance_VolumeUpdate(t *testing.T) { { Config: ` resource scaleway_mongodb_instance main { - name = "test-mongodb-volume-update" - version = "4.4" - node_type = "db-dev-s" - node_number = "3" + name = "test-mongodb-volume-update1" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = "1" user_name = "my_initial_user" password = "thiZ_is_v&ry_s3cret" - volume_size_in_gb = 50 + volume_size_in_gb = 5 } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "volume_size_in_gb", "50"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "volume_size_in_gb", "5"), ), }, { Config: ` resource scaleway_mongodb_instance main { - name = "test-mongodb-volume-update" - version = "4.4" - node_type = "db-dev-s" - node_number = "3" + name = "test-mongodb-volume-update1" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = "1" user_name = "my_initial_user" password = "thiZ_is_v&ry_s3cret" - volume_size_in_gb = 100 + volume_size_in_gb = 10 } `, Check: resource.ComposeTestCheckFunc( isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "volume_size_in_gb", "100"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "volume_size_in_gb", "10"), ), }, }, }) } -func TestAccMongoDBInstance_PrivateNetwork(t *testing.T) { +func TestAccMongoDBInstance_FromSnapshot(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -102,28 +102,38 @@ func TestAccMongoDBInstance_PrivateNetwork(t *testing.T) { ProviderFactories: tt.ProviderFactories, CheckDestroy: IsInstanceDestroyed(tt), Steps: []resource.TestStep{ + // Step 1: Create a MongoDB instance and a snapshot { Config: ` - resource scaleway_vpc_private_network pn01 { - name = "test-mongodb-private-network" + resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-from-snapshot" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" } - resource scaleway_mongodb_instance main { - name = "test-mongodb-private-network" - version = "4.4" - node_type = "db-dev-s" - node_number = "3" - user_name = "my_initial_user" - password = "thiZ_is_v&ry_s3cret" - private_network { - id = scaleway_vpc_private_network.pn01.id - } + resource "scaleway_mongodb_snapshot" "main_snapshot" { + instance_id = scaleway_mongodb_instance.main.id + name = "test-snapshot" + depends_on = [ + scaleway_mongodb_instance.main + ] + } + + resource "scaleway_mongodb_instance" "restored_instance" { + snapshot_id = scaleway_mongodb_snapshot.main_snapshot.id + name = "restored-mongodb-from-snapshot" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + depends_on = [ + scaleway_mongodb_snapshot.main_snapshot + ] } `, Check: resource.ComposeTestCheckFunc( - isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), - resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "private_network.#", "1"), - resource.TestCheckResourceAttrPair("scaleway_mongodb_instance.main", "private_network.0.id", "scaleway_vpc_private_network.pn01", "id"), + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.restored_instance"), ), }, }, diff --git a/internal/services/mongodb/snapshot.go b/internal/services/mongodb/snapshot.go index 6e5989133c..8d663e4945 100644 --- a/internal/services/mongodb/snapshot.go +++ b/internal/services/mongodb/snapshot.go @@ -1 +1,204 @@ package mongodb + +import ( + "context" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" +) + +func ResourceSnapshot() *schema.Resource { + return &schema.Resource{ + CreateContext: ResourceSnapshotCreate, + ReadContext: ResourceSnapshotRead, + UpdateContext: ResourceSnapshotUpdate, + DeleteContext: ResourceSnapshotDelete, + Timeouts: &schema.ResourceTimeout{ + Create: schema.DefaultTimeout(defaultMongodbSnapshotTimeout), + Update: schema.DefaultTimeout(defaultMongodbSnapshotTimeout), + Delete: schema.DefaultTimeout(defaultMongodbSnapshotTimeout), + Default: schema.DefaultTimeout(defaultMongodbSnapshotTimeout), + }, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, + SchemaVersion: 0, + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Computed: true, + Description: "Unique identifier of the snapshot", + }, + "instance_id": { + Type: schema.TypeString, + Required: true, + Description: "The ID of the instance from which the snapshot was created", + }, + "name": { + Type: schema.TypeString, + Optional: true, + Computed: true, + Description: "Name of the snapshot", + }, + "instance_name": { + Type: schema.TypeString, + Computed: true, + Description: "Name of the instance from which the snapshot was created", + }, + + "size": { + Type: schema.TypeInt, + Computed: true, + Description: "Size of the snapshot in bytes", + }, + "node_type": { + Type: schema.TypeString, + Computed: true, + Description: "Type of node associated with the snapshot", + }, + "volume_type": { + Type: schema.TypeString, + Computed: true, + Description: "Type of volume used for the snapshot (e.g., SSD, HDD)", + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time when the snapshot was created", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the last update of the snapshot", + }, + "expires_at": { + Type: schema.TypeString, + Description: "Expiration date (Format ISO 8601). Cannot be removed.", + Optional: true, + Computed: true, + ValidateDiagFunc: verify.IsDate(), + }, + "region": regional.Schema(), + }, + CustomizeDiff: customdiff.All(), + } +} + +func ResourceSnapshotCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + mongodbAPI, zone, region, err := newAPIWithZoneAndRegion(d, m) + if err != nil { + return diag.FromErr(err) + } + instanceID := locality.ExpandID(d.Get("instance_id").(string)) + createReq := &mongodb.CreateSnapshotRequest{ + InstanceID: instanceID, + Region: region, + Name: types.ExpandOrGenerateString(d.Get("name"), "snapshot"), + ExpiresAt: types.ExpandTimePtr(d.Get("expires_at")), + } + + snapshot, err := mongodbAPI.CreateSnapshot(createReq, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + if snapshot != nil { + d.SetId(zonal.NewIDString(zone, snapshot.ID)) + _, err = waitForSnapshot(ctx, mongodbAPI, region, instanceID, snapshot.ID, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } + } + + return ResourceSnapshotRead(ctx, d, m) +} + +func ResourceSnapshotRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + mongodbAPI, region, err := newAPIWithRegion(d, m) + if err != nil { + return diag.FromErr(err) + } + zone, snapshotID, err := zonal.ParseID(d.Id()) + + instanceID := locality.ExpandID(d.Get("instance_id").(string)) + snapshot, err := waitForSnapshot(ctx, mongodbAPI, region, instanceID, snapshotID, d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } + _ = d.Set("id", snapshot.ID) + _ = d.Set("instance_id", zonal.NewIDString(zone, snapshot.InstanceID)) + _ = d.Set("name", snapshot.Name) + _ = d.Set("instance_name", snapshot.InstanceName) + _ = d.Set("size", snapshot.Size) + _ = d.Set("node_type", snapshot.NodeType) + _ = d.Set("volume_type", snapshot.VolumeType.Type) + _ = d.Set("expires_at", types.FlattenTime(snapshot.ExpiresAt)) + _ = d.Set("created_at", types.FlattenTime(snapshot.CreatedAt)) + _ = d.Set("updated_at", types.FlattenTime(snapshot.UpdatedAt)) + _ = d.Set("region", snapshot.Region.String()) + + return nil +} + +func ResourceSnapshotUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + mongodbAPI, region, err := newAPIWithRegion(d, m) + if err != nil { + return diag.FromErr(err) + } + _, snapshotID, err := zonal.ParseID(d.Id()) + + updateReq := &mongodb.UpdateSnapshotRequest{ + SnapshotID: snapshotID, + Region: region, + } + + if d.HasChange("name") { + newName := types.ExpandOrGenerateString(d.Get("name"), "snapshot") + updateReq.Name = &newName + } + + if d.HasChange("expires_at") { + updateReq.ExpiresAt = types.ExpandTimePtr(d.Get("expires_at")) + } + + _, err = mongodbAPI.UpdateSnapshot(updateReq) + if err != nil { + return diag.FromErr(err) + } + instanceID := locality.ExpandID(d.Get("instance_id").(string)) + + _, err = waitForSnapshot(ctx, mongodbAPI, region, instanceID, snapshotID, d.Timeout(schema.TimeoutUpdate)) + if err != nil { + return diag.FromErr(err) + } + + return ResourceSnapshotRead(ctx, d, m) +} + +func ResourceSnapshotDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + mongodbAPI, region, err := newAPIWithRegion(d, m) + if err != nil { + return diag.FromErr(err) + } + _, snapshotID, err := zonal.ParseID(d.Id()) + + deleteReq := &mongodb.DeleteSnapshotRequest{ + SnapshotID: snapshotID, + Region: region, + } + + _, err = mongodbAPI.DeleteSnapshot(deleteReq) + if err != nil { + return diag.FromErr(err) + } + + d.SetId("") + return nil +} diff --git a/internal/services/mongodb/snapshot_test.go b/internal/services/mongodb/snapshot_test.go new file mode 100644 index 0000000000..53af761035 --- /dev/null +++ b/internal/services/mongodb/snapshot_test.go @@ -0,0 +1,131 @@ +package mongodb_test + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + mongodbSDK "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb" +) + +func TestAccMongoDBSnapshot_Basic(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isSnapshotDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-instance" + version = "7.0.12" + node_type = "MGDB-PRO2-XXS" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } + + resource "scaleway_mongodb_snapshot" "main" { + instance_id = scaleway_mongodb_instance.main.id + name = "test-snapshot" + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "name", "test-snapshot"), + ), + }, + }, + }) +} + +func TestAccMongoDBSnapshot_Update(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isSnapshotDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-instance" + version = "7.0.11" + node_type = "MGDB-PRO2-XXS" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } + + resource "scaleway_mongodb_snapshot" "main" { + instance_id = scaleway_mongodb_instance.main.id + name = "test-snapshot" + expires_at = "2024-12-31T23:59:59Z" + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2024-12-31T23:59:59Z"), + ), + }, + { + Config: ` + resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-instance" + version = "7.0.11" + node_type = "MGDB-PRO2-XXS" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } + + resource "scaleway_mongodb_snapshot" "main" { + instance_id = scaleway_mongodb_instance.main.id + name = "updated-snapshot" + expires_at = "2025-12-31T23:59:59Z" + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "name", "updated-snapshot"), + resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2025-12-31T23:59:59Z"), + ), + }, + }, + }) +} + +func isSnapshotDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { + return func(state *terraform.State) error { + for _, rs := range state.RootModule().Resources { + if rs.Type != "scaleway_mongodb_snapshot" { + continue + } + + mongodbAPI, region, ID, err := mongodb.NewAPIWithRegionAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + instanceID := rs.Primary.Attributes["instance_id"] + listSnapshots, err := mongodbAPI.ListSnapshots(&mongodbSDK.ListSnapshotsRequest{ + InstanceID: &instanceID, + Region: region, + }) + if err != nil { + return err + } + + for _, snapshot := range listSnapshots.Snapshots { + if snapshot.ID == ID { + return fmt.Errorf("snapshot (%s) still exists", rs.Primary.ID) + } + } + } + return nil + } +} diff --git a/internal/services/mongodb/sweep_test.go b/internal/services/mongodb/sweep_test.go index 6fc0e67c3c..d7b5b5b1e1 100644 --- a/internal/services/mongodb/sweep_test.go +++ b/internal/services/mongodb/sweep_test.go @@ -1,14 +1,14 @@ -package redis_test +package mongodb_test import ( "testing" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" - redistestfuncs "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/redis/testfuncs" + mongodbtestfuncs "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb/testfuncs" ) func init() { - redistestfuncs.AddTestSweepers() + mongodbtestfuncs.AddTestSweepers() } func TestMain(m *testing.M) { diff --git a/internal/services/mongodb/testfuncs/sweep.go b/internal/services/mongodb/testfuncs/sweep.go index 6ee1ba4902..e1acd5d569 100644 --- a/internal/services/mongodb/testfuncs/sweep.go +++ b/internal/services/mongodb/testfuncs/sweep.go @@ -1,40 +1,41 @@ -package redistestfuncs +package mongodbtestfuncs import ( "fmt" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" - redisSDK "github.com/scaleway/scaleway-sdk-go/api/redis/v1" + mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" "github.com/scaleway/terraform-provider-scaleway/v2/internal/logging" ) func AddTestSweepers() { - resource.AddTestSweepers("scaleway_redis_cluster", &resource.Sweeper{ - Name: "scaleway_redis_cluster", - F: testSweepRedisCluster, + resource.AddTestSweepers("scaleway_mongodb_instance", &resource.Sweeper{ + Name: "scaleway_mongodb_instance", + F: testSweepMongodbInstance, }) } -func testSweepRedisCluster(_ string) error { +func testSweepMongodbInstance(_ string) error { return acctest.SweepZones(scw.AllZones, func(scwClient *scw.Client, zone scw.Zone) error { - redisAPI := redisSDK.NewAPI(scwClient) - logging.L.Debugf("sweeper: destroying the redis cluster in (%s)", zone) - listClusters, err := redisAPI.ListClusters(&redisSDK.ListClustersRequest{ - Zone: zone, - }, scw.WithAllPages()) + mongodbAPI := mongodb.NewAPI(scwClient) + logging.L.Debugf("sweeper: destroying the mongodb instance in (%s)", zone) + extractRegion, err := zone.Region() + listInstance, err := mongodbAPI.ListInstances(&mongodb.ListInstancesRequest{ + Region: extractRegion, + }) if err != nil { - return fmt.Errorf("error listing redis clusters in (%s) in sweeper: %w", zone, err) + return fmt.Errorf("error listing mongodb instance in (%s) in sweeper: %w", zone, err) } - for _, cluster := range listClusters.Clusters { - _, err := redisAPI.DeleteCluster(&redisSDK.DeleteClusterRequest{ - Zone: zone, - ClusterID: cluster.ID, + for _, instance := range listInstance.Instances { + _, err := mongodbAPI.DeleteInstance(&mongodb.DeleteInstanceRequest{ + Region: extractRegion, + InstanceID: instance.ID, }) if err != nil { - return fmt.Errorf("error deleting redis cluster in sweeper: %w", err) + return fmt.Errorf("error deleting mongodb instance in sweeper: %w", err) } } diff --git a/internal/services/mongodb/types.go b/internal/services/mongodb/types.go index c25def8aa4..e889eb4b63 100644 --- a/internal/services/mongodb/types.go +++ b/internal/services/mongodb/types.go @@ -1,16 +1,8 @@ -package redis +package mongodb import ( - "fmt" - - "github.com/hashicorp/terraform-plugin-sdk/v2/diag" - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" - "github.com/scaleway/scaleway-sdk-go/api/redis/v1" - "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" ) func expandPrivateNetwork(data []interface{}) ([]*mongodb.EndpointSpec, error) { @@ -18,127 +10,47 @@ func expandPrivateNetwork(data []interface{}) ([]*mongodb.EndpointSpec, error) { return nil, nil } epSpecs := make([]*mongodb.EndpointSpec, 0, len(data)) - for _, rawPN := range data { pn := rawPN.(map[string]interface{}) pnID := locality.ExpandID(pn["id"].(string)) - rawIPs := pn["service_ips"].([]interface{}) - ips := []scw.IPNet(nil) + spec := &mongodb.EndpointSpecPrivateNetworkDetails{ PrivateNetworkID: pnID, } - if len(rawIPs) != 0 { - for _, rawIP := range rawIPs { - ip, err := types.ExpandIPNet(rawIP.(string)) - if err != nil { - return epSpecs, err - } - ips = append(ips, ip) - } - spec.ServiceIPs = ips - } else { - spec.IpamConfig = &redis.EndpointSpecPrivateNetworkSpecIpamConfig{} - } - - epSpecs = append(epSpecs, &redis.EndpointSpec{PrivateNetwork: spec}) + epSpecs = append(epSpecs, &mongodb.EndpointSpec{PrivateNetwork: spec}) } return epSpecs, nil } -func expandACLSpecs(i interface{}) ([]*redis.ACLRuleSpec, error) { - rules := []*redis.ACLRuleSpec(nil) - - for _, aclRule := range i.(*schema.Set).List() { - rawRule := aclRule.(map[string]interface{}) - rule := &redis.ACLRuleSpec{} - if ruleDescription, hasDescription := rawRule["description"]; hasDescription { - rule.Description = ruleDescription.(string) - } - ip, err := types.ExpandIPNet(rawRule["ip"].(string)) - if err != nil { - return nil, fmt.Errorf("failed to validate acl ip (%s): %w", rawRule["ip"].(string), err) - } - rule.IPCidr = ip - rules = append(rules, rule) - } - - return rules, nil -} - -func flattenACLs(aclRules []*redis.ACLRule) interface{} { - flat := []map[string]interface{}(nil) - for _, acl := range aclRules { - flat = append(flat, map[string]interface{}{ - "id": acl.ID, - "ip": acl.IPCidr.String(), - "description": types.FlattenStringPtr(acl.Description), - }) - } - return flat -} - -func expandSettings(i interface{}) []*redis.ClusterSetting { - rawSettings := i.(map[string]interface{}) - settings := []*redis.ClusterSetting(nil) - for key, value := range rawSettings { - settings = append(settings, &redis.ClusterSetting{ - Name: key, - Value: value.(string), - }) - } - return settings -} - -func flattenSettings(settings []*redis.ClusterSetting) interface{} { - rawSettings := make(map[string]string) - for _, setting := range settings { - rawSettings[setting.Name] = setting.Value - } - return rawSettings -} - -func flattenPrivateNetwork(endpoints []*redis.Endpoint) (interface{}, bool) { +func flattenPrivateNetwork(endpoints []*mongodb.Endpoint) (interface{}, bool) { pnFlat := []map[string]interface{}(nil) for _, endpoint := range endpoints { if endpoint.PrivateNetwork == nil { continue } - pn := endpoint.PrivateNetwork - fetchRegion, err := pn.Zone.Region() - if err != nil { - return diag.FromErr(err), false - } - pnRegionalID := regional.NewIDString(fetchRegion, pn.ID) - serviceIps := []interface{}(nil) - for _, ip := range pn.ServiceIPs { - serviceIps = append(serviceIps, ip.String()) - } pnFlat = append(pnFlat, map[string]interface{}{ "endpoint_id": endpoint.ID, - "zone": pn.Zone, - "id": pnRegionalID, - "service_ips": serviceIps, + "id": endpoint.PrivateNetwork.PrivateNetworkID, + "ips": endpoint.IPs, + "port": endpoint.Port, + "dns_records": endpoint.DNSRecords, }) } return pnFlat, len(pnFlat) != 0 } -func flattenPublicNetwork(endpoints []*redis.Endpoint) interface{} { - pnFlat := []map[string]interface{}(nil) +func flattenPublicNetwork(endpoints []*mongodb.Endpoint) (interface{}, bool) { + publicFlat := []map[string]interface{}(nil) for _, endpoint := range endpoints { - if endpoint.PublicNetwork == nil { + if endpoint.Public == nil { continue } - ipsFlat := []interface{}(nil) - for _, ip := range endpoint.IPs { - ipsFlat = append(ipsFlat, ip.String()) - } - pnFlat = append(pnFlat, map[string]interface{}{ - "id": endpoint.ID, - "port": int(endpoint.Port), - "ips": ipsFlat, + publicFlat = append(publicFlat, map[string]interface{}{ + "id": endpoint.ID, + "port": endpoint.Port, + "dns_record": endpoint.DNSRecords[0], }) break } - return pnFlat + return publicFlat, len(publicFlat) != 0 } From ffccd890e79d2d45aed444b1b33bdc5c60be26ec Mon Sep 17 00:00:00 2001 From: jremy Date: Tue, 15 Oct 2024 15:07:29 +0200 Subject: [PATCH 05/26] feat(mongodb): with private network --- internal/services/mongodb/instance.go | 66 +- internal/services/mongodb/instance_test.go | 3 +- internal/services/mongodb/snapshot.go | 3 +- internal/services/mongodb/snapshot_test.go | 20 +- .../mongo-db-instance-basic.cassette.yaml | 7502 +++++++++++ ...go-db-instance-from-snapshot.cassette.yaml | 9221 ++++++++++++++ ...go-db-instance-volume-update.cassette.yaml | 10593 ++++++++++++++++ .../mongo-db-snapshot-basic.cassette.yaml | 9807 ++++++++++++++ .../mongo-db-snapshot-update.cassette.yaml | 7849 ++++++++++++ 9 files changed, 45016 insertions(+), 48 deletions(-) create mode 100644 internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml create mode 100644 internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml create mode 100644 internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml create mode 100644 internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml create mode 100644 internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index 1a651d996b..8d8cf55f89 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -3,17 +3,14 @@ package mongodb import ( "context" "errors" - "fmt" "strings" "time" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" - "github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/scaleway-sdk-go/scw" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/cdf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" @@ -45,17 +42,21 @@ func ResourceInstance() *schema.Resource { Type: schema.TypeString, Optional: true, Computed: true, - Description: "Name of the mongoDB cluster", + Description: "Name of the MongoDB cluster", }, "version": { Type: schema.TypeString, Optional: true, - Description: "Mongodb version of the instance", + Computed: true, + Description: "MongoDB version of the instance", + ConflictsWith: []string{ + "snapshot_id", + }, }, "node_number": { Type: schema.TypeInt, - Optional: true, - Description: "number of node in the instance", + Required: true, + Description: "Number of nodes in the instance", }, "node_type": { Type: schema.TypeString, @@ -67,19 +68,25 @@ func ResourceInstance() *schema.Resource { Type: schema.TypeString, Optional: true, Description: "Name of the user created when the cluster is created", + ConflictsWith: []string{ + "snapshot_id", + }, }, "password": { Type: schema.TypeString, Sensitive: true, Optional: true, Description: "Password of the user", + ConflictsWith: []string{ + "snapshot_id", + }, }, // volume "volume_type": { Type: schema.TypeString, Default: mongodb.VolumeTypeSbs5k, Optional: true, - Description: "Volume size of instance.", + Description: "Volume type of the instance", }, "volume_size_in_gb": { Type: schema.TypeInt, @@ -92,7 +99,12 @@ func ResourceInstance() *schema.Resource { Type: schema.TypeString, Optional: true, ForceNew: true, - Description: "Snapshot id", + Description: "Snapshot ID to restore the MongoDB instance from", + ConflictsWith: []string{ + "user_name", + "password", + "version", + }, }, //endpoint "private_network": { @@ -134,7 +146,7 @@ func ResourceInstance() *schema.Resource { "dns_records": { Type: schema.TypeString, Computed: true, - Description: "The dns_record of your endpoint", + Description: "The DNS record of your endpoint", }, // computed "endpoint_id": { @@ -167,7 +179,7 @@ func ResourceInstance() *schema.Resource { "dns_record": { Type: schema.TypeString, Computed: true, - Description: "The dns_record of your endpoint", + Description: "The DNS record of your endpoint", }, }, }, @@ -178,7 +190,7 @@ func ResourceInstance() *schema.Resource { Elem: &schema.Schema{ Type: schema.TypeString, }, - Description: "List of tags [\"tag1\", \"tag2\", ...] attached to a Mongodb instance", + Description: "List of tags [\"tag1\", \"tag2\", ...] attached to a MongoDB instance", }, "settings": { Type: schema.TypeMap, @@ -191,39 +203,17 @@ func ResourceInstance() *schema.Resource { "created_at": { Type: schema.TypeString, Computed: true, - Description: "The date and time of the creation of the Mongodb instance", + Description: "The date and time of the creation of the MongoDB instance", }, "updated_at": { Type: schema.TypeString, Computed: true, - Description: "The date and time of the last update of the Mongodb instance", + Description: "The date and time of the last update of the MongoDB instance", }, // Common "region": regional.Schema(), "project_id": account.ProjectIDSchema(), }, - CustomizeDiff: customdiff.All( - cdf.LocalityCheck("private_network.#.id"), - func(ctx context.Context, diff *schema.ResourceDiff, v interface{}) error { - snapshotID := diff.Get("snapshot_id") - - if snapshotID == nil || snapshotID == "" { - if diff.Get("user_name") == nil || diff.Get("user_name") == "" { - return fmt.Errorf("`user_name` must be provided when `snapshot_id` is not set") - } - if diff.Get("password") == nil || diff.Get("password") == "" { - return fmt.Errorf("`password` must be provided when `snapshot_id` is not set") - } - if diff.Get("version") == nil || diff.Get("version") == "" { - return fmt.Errorf("`version` must be provided when `snapshot_id` is not set") - } - if diff.Get("node_number") == nil || diff.Get("node_number") == "" { - return fmt.Errorf("`node_number` must be provided when `snapshot_id` is not set") - } - } - return nil - }, - ), } } @@ -242,9 +232,11 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter volume := &mongodb.RestoreSnapshotRequestVolumeDetails{ VolumeType: mongodb.VolumeType(d.Get("volume_type").(string)), } + id := regional.ExpandID(snapshotID.(string)) restoreSnapshotRequest := &mongodb.RestoreSnapshotRequest{ - SnapshotID: snapshotID.(string), + SnapshotID: id.ID, InstanceName: types.ExpandOrGenerateString(d.Get("name"), "mongodb"), + NodeNumber: *nodeNumber, NodeType: d.Get("node_type").(string), Volume: volume, } diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 7007e38cd6..aa80239900 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -102,7 +102,6 @@ func TestAccMongoDBInstance_FromSnapshot(t *testing.T) { ProviderFactories: tt.ProviderFactories, CheckDestroy: IsInstanceDestroyed(tt), Steps: []resource.TestStep{ - // Step 1: Create a MongoDB instance and a snapshot { Config: ` resource "scaleway_mongodb_instance" "main" { @@ -117,6 +116,7 @@ func TestAccMongoDBInstance_FromSnapshot(t *testing.T) { resource "scaleway_mongodb_snapshot" "main_snapshot" { instance_id = scaleway_mongodb_instance.main.id name = "test-snapshot" + expires_at = "2024-12-31T23:59:59Z" depends_on = [ scaleway_mongodb_instance.main ] @@ -128,6 +128,7 @@ func TestAccMongoDBInstance_FromSnapshot(t *testing.T) { node_type = "MGDB-PLAY2-NANO" node_number = 1 depends_on = [ + scaleway_mongodb_instance.main, scaleway_mongodb_snapshot.main_snapshot ] } diff --git a/internal/services/mongodb/snapshot.go b/internal/services/mongodb/snapshot.go index 8d663e4945..b16cefceb7 100644 --- a/internal/services/mongodb/snapshot.go +++ b/internal/services/mongodb/snapshot.go @@ -82,8 +82,7 @@ func ResourceSnapshot() *schema.Resource { "expires_at": { Type: schema.TypeString, Description: "Expiration date (Format ISO 8601). Cannot be removed.", - Optional: true, - Computed: true, + Required: true, ValidateDiagFunc: verify.IsDate(), }, "region": regional.Schema(), diff --git a/internal/services/mongodb/snapshot_test.go b/internal/services/mongodb/snapshot_test.go index 53af761035..4482be7f14 100644 --- a/internal/services/mongodb/snapshot_test.go +++ b/internal/services/mongodb/snapshot_test.go @@ -8,6 +8,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" mongodbSDK "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb" ) @@ -34,6 +36,7 @@ func TestAccMongoDBSnapshot_Basic(t *testing.T) { resource "scaleway_mongodb_snapshot" "main" { instance_id = scaleway_mongodb_instance.main.id name = "test-snapshot" + expires_at = "2024-12-31T23:59:59Z" } `, Check: resource.ComposeTestCheckFunc( @@ -57,8 +60,8 @@ func TestAccMongoDBSnapshot_Update(t *testing.T) { Config: ` resource "scaleway_mongodb_instance" "main" { name = "test-mongodb-instance" - version = "7.0.11" - node_type = "MGDB-PRO2-XXS" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" node_number = 1 user_name = "my_initial_user" password = "thiZ_is_v&ry_s3cret" @@ -78,8 +81,8 @@ func TestAccMongoDBSnapshot_Update(t *testing.T) { Config: ` resource "scaleway_mongodb_instance" "main" { name = "test-mongodb-instance" - version = "7.0.11" - node_type = "MGDB-PRO2-XXS" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" node_number = 1 user_name = "my_initial_user" password = "thiZ_is_v&ry_s3cret" @@ -88,12 +91,12 @@ func TestAccMongoDBSnapshot_Update(t *testing.T) { resource "scaleway_mongodb_snapshot" "main" { instance_id = scaleway_mongodb_instance.main.id name = "updated-snapshot" - expires_at = "2025-12-31T23:59:59Z" + expires_at = "2025-09-20T23:59:59Z" } `, Check: resource.ComposeTestCheckFunc( resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "name", "updated-snapshot"), - resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2025-12-31T23:59:59Z"), + resource.TestCheckResourceAttr("scaleway_mongodb_snapshot.main", "expires_at", "2025-09-20T23:59:59Z"), ), }, }, @@ -111,9 +114,10 @@ func isSnapshotDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { if err != nil { return err } - instanceID := rs.Primary.Attributes["instance_id"] + instanceID := zonal.ExpandID(regional.ExpandID(rs.Primary.Attributes["instance_id"]).String()) + listSnapshots, err := mongodbAPI.ListSnapshots(&mongodbSDK.ListSnapshotsRequest{ - InstanceID: &instanceID, + InstanceID: &instanceID.ID, Region: region, }) if err != nil { diff --git a/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml new file mode 100644 index 0000000000..7708ed26e7 --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-instance-basic.cassette.yaml @@ -0,0 +1,7502 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 314 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-basic1","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:40:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac29550d-1d09-4e7a-bb6f-9f366762f5cb + status: 200 OK + code: 200 + duration: 355.621423ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:40:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3b0c86b-8794-46eb-acff-1282771bee89 + status: 200 OK + code: 200 + duration: 143.50883ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:40:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb923b63-3d72-4c28-8677-23273bc13253 + status: 200 OK + code: 200 + duration: 69.697458ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:40:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b176d91-04b4-482e-8f99-b139fd9a2de2 + status: 200 OK + code: 200 + duration: 82.078929ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:40:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca312657-302a-4236-837a-535d7e363e5b + status: 200 OK + code: 200 + duration: 71.274985ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c9561e1-db27-48a8-ad7d-ca80fdf3a397 + status: 200 OK + code: 200 + duration: 67.408912ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a29dd50b-d1d7-4807-9c11-ec9733a31260 + status: 200 OK + code: 200 + duration: 79.543098ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3752b147-c5ca-4073-aa2b-e92142c7c066 + status: 200 OK + code: 200 + duration: 70.365583ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef33abf8-0062-400c-ac3f-773f707bada9 + status: 200 OK + code: 200 + duration: 67.486038ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 582116eb-741f-4622-8b61-0b1a41b293fd + status: 200 OK + code: 200 + duration: 65.100029ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f7a58cd5-d9bb-4683-963d-550e23c33483 + status: 200 OK + code: 200 + duration: 68.749669ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92d0a96a-bfa5-4d14-8f48-93a2c80cf72b + status: 200 OK + code: 200 + duration: 67.040916ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 940729fb-e3ac-45c0-8849-2224a6e76c3c + status: 200 OK + code: 200 + duration: 79.918538ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ccd466ec-2255-4c73-b965-652ce5bd034a + status: 200 OK + code: 200 + duration: 80.4723ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 82efaf94-979c-4df9-8205-afd91303cc1e + status: 200 OK + code: 200 + duration: 63.498434ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b49c4240-b28b-49f6-a1d9-9ac17f570a7e + status: 200 OK + code: 200 + duration: 76.794643ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08f6dc03-0492-425c-90e8-ac7464b511b0 + status: 200 OK + code: 200 + duration: 163.324326ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 348062e5-dc31-442f-b038-c1f4209d2080 + status: 200 OK + code: 200 + duration: 69.478717ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15e0039f-0c5a-4b79-a893-3af2e76e3a9c + status: 200 OK + code: 200 + duration: 72.111366ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1740ff04-c4ad-4f57-bc38-b236c4429364 + status: 200 OK + code: 200 + duration: 59.613838ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5232747a-4990-4e10-9199-12690e0a6452 + status: 200 OK + code: 200 + duration: 76.33212ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b515df4a-4b78-4925-a983-6397ef793b01 + status: 200 OK + code: 200 + duration: 71.654537ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6c1d86d-5756-434d-82a1-7d05a9ffd717 + status: 200 OK + code: 200 + duration: 69.445529ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9dc7a2e-ae89-49a8-b45e-8d42b4efebfe + status: 200 OK + code: 200 + duration: 73.405894ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59d4e5b4-a2fa-449d-8730-305023aa3c32 + status: 200 OK + code: 200 + duration: 86.96572ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 720530d4-127f-4723-a690-c7de026effa4 + status: 200 OK + code: 200 + duration: 66.87197ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f29bdcf-9bbc-4f3b-82ed-c9a636b05718 + status: 200 OK + code: 200 + duration: 83.863511ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:42:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06e46fd9-c55b-4667-8229-0a63c5a87151 + status: 200 OK + code: 200 + duration: 68.006336ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 37b1ef8e-eee5-4810-ace4-dd356c990f98 + status: 200 OK + code: 200 + duration: 75.017165ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb5067ae-d6c8-45df-b1f8-db94e6fa6e8a + status: 200 OK + code: 200 + duration: 53.21938ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29d5b823-2c5a-46b6-877c-909fecbddd1d + status: 200 OK + code: 200 + duration: 67.011536ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf033395-5851-4dad-905d-bc75ae92a777 + status: 200 OK + code: 200 + duration: 73.970672ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29fb7ee2-0405-421f-95fe-a4db4d9d260f + status: 200 OK + code: 200 + duration: 57.877673ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f031548c-08b6-4c13-8536-324938389c8e + status: 200 OK + code: 200 + duration: 76.290225ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4d281a29-fd18-4e8c-bd6d-97ee1c2a57e2 + status: 200 OK + code: 200 + duration: 69.788272ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c264b839-89cf-463b-846c-5e9ca47fd01d + status: 200 OK + code: 200 + duration: 77.030918ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2377cfa8-c4fb-440f-a7cb-8d2e8cbb80e9 + status: 200 OK + code: 200 + duration: 82.872313ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f40763b-5e2e-4ea7-9ff6-8328b0b14f9c + status: 200 OK + code: 200 + duration: 66.411778ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 190f1135-598b-4f7e-982f-a0ee474a25bf + status: 200 OK + code: 200 + duration: 543.857907ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fda3043d-3f13-4238-ab15-d44873490889 + status: 200 OK + code: 200 + duration: 536.277851ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f92174b-ad89-4938-b2d3-db98c897a7cb + status: 200 OK + code: 200 + duration: 83.763342ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f4d6e5c-e4c2-4a62-b574-da7718b0002d + status: 200 OK + code: 200 + duration: 57.721717ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c91b4a3-5789-4a25-97cc-f03a1afaae1b + status: 200 OK + code: 200 + duration: 75.723045ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30c50a9c-5c8a-427d-8ba4-c52672fc276e + status: 200 OK + code: 200 + duration: 70.528861ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06c47f86-7cbd-4286-ab91-469aae998739 + status: 200 OK + code: 200 + duration: 58.934062ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3cea413-0d08-45d4-b5df-3604f828963c + status: 200 OK + code: 200 + duration: 85.247669ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88bd12f4-7997-49d6-bda6-eb1199dabfcb + status: 200 OK + code: 200 + duration: 84.814349ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa626d1e-3709-4582-ad98-da80fd2f15d9 + status: 200 OK + code: 200 + duration: 71.795871ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05a3c771-645a-40d8-b976-43615bacec41 + status: 200 OK + code: 200 + duration: 76.461501ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 99e3e2f8-fcbb-48e1-93ec-b8da3c5554b9 + status: 200 OK + code: 200 + duration: 424.718011ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 57271e42-660d-474c-90a3-fef6bfb090b8 + status: 200 OK + code: 200 + duration: 79.711823ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:44:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 742f3b90-d4cb-4bc4-97f7-76a7406850ef + status: 200 OK + code: 200 + duration: 75.36788ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c701d17d-5a60-4ef2-9269-32979a205298 + status: 200 OK + code: 200 + duration: 80.699417ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f91cc44-0c7f-4252-8a17-47b15984e061 + status: 200 OK + code: 200 + duration: 66.723502ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac1225c4-6853-49cc-bb15-72ec1ebd1190 + status: 200 OK + code: 200 + duration: 65.774286ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de4218a2-f7ef-4dd9-8fdd-1dc16f0da117 + status: 200 OK + code: 200 + duration: 75.849226ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e2bed0b-5d63-4071-bd49-13a3083be2f9 + status: 200 OK + code: 200 + duration: 78.6217ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a2cf4212-9830-4fd3-8324-871208528db1 + status: 200 OK + code: 200 + duration: 61.806781ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5eed9081-3a1b-4865-9b9d-c6c2718a2e11 + status: 200 OK + code: 200 + duration: 75.654224ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f11a8bf-5482-4a15-a528-171770f58f6d + status: 200 OK + code: 200 + duration: 81.950683ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7827aad-a879-464d-a18c-680df65288a3 + status: 200 OK + code: 200 + duration: 80.058429ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b862abed-fe08-435f-bbcd-825ac4fe3204 + status: 200 OK + code: 200 + duration: 62.736738ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:45:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c00e075d-5990-48ca-8186-ba62b7dea716 + status: 200 OK + code: 200 + duration: 68.739351ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 246d8f80-cc5a-4813-8e3b-5607961048db + status: 200 OK + code: 200 + duration: 65.300871ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 529fd332-ce31-4aa5-ba36-1ff936878f1b + status: 200 OK + code: 200 + duration: 71.474977ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b251776f-4636-4c3f-a619-6f30730f67c0 + status: 200 OK + code: 200 + duration: 82.462162ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ca37e0f-5479-4d77-9355-a805d201fb51 + status: 200 OK + code: 200 + duration: 64.917401ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 701b71f7-7ed7-4a93-a2aa-815108c61762 + status: 200 OK + code: 200 + duration: 72.821173ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17cd5eb5-fade-4222-bac2-b51a5c2adfca + status: 200 OK + code: 200 + duration: 60.857764ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01c2eadb-e92f-4e66-a6c5-e74dd5270c70 + status: 200 OK + code: 200 + duration: 74.004476ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3dcbd2f-5ec2-4ce2-a59c-439e8af80d58 + status: 200 OK + code: 200 + duration: 64.441839ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8532b19-e901-4b98-9c60-4df9aadc4e56 + status: 200 OK + code: 200 + duration: 62.444197ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f39fcb1b-38f4-4c47-b873-720574291fdf + status: 200 OK + code: 200 + duration: 66.24031ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f9cab5f6-0db0-4fa2-8797-5677a983c002 + status: 200 OK + code: 200 + duration: 84.561819ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:46:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01a54612-4f71-4da7-be43-4af0dd935877 + status: 200 OK + code: 200 + duration: 102.721045ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e277e3a6-4b97-4239-979a-e0c988ddd2cb + status: 200 OK + code: 200 + duration: 70.632637ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cdace39d-569d-407f-8d99-5284ddee34e0 + status: 200 OK + code: 200 + duration: 74.407885ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15bc5a74-54cb-4273-b7c2-6526097ed157 + status: 200 OK + code: 200 + duration: 55.635755ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19a73309-7b96-4d58-8a6e-7d9ea888f546 + status: 200 OK + code: 200 + duration: 67.532837ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ef16917-dc54-4602-bca0-7e80adcc1636 + status: 200 OK + code: 200 + duration: 79.555136ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9cbd4949-2e98-47b6-92fa-40e5ccc24f45 + status: 200 OK + code: 200 + duration: 76.88204ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8361d3a9-d2b3-4c05-8ef5-3fb22129bf93 + status: 200 OK + code: 200 + duration: 69.177082ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5395461-4143-4996-a60b-8e05320ab028 + status: 200 OK + code: 200 + duration: 78.446331ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc2f7d6d-64ea-4329-b0e1-f54595204fc7 + status: 200 OK + code: 200 + duration: 82.460006ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 50937be3-f718-4106-a279-4590dcb9045b + status: 200 OK + code: 200 + duration: 62.738706ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f30b6ff6-fe49-40dc-9590-e6fc611db83b + status: 200 OK + code: 200 + duration: 89.433841ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:47:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f34ea7ee-3062-4dd1-8389-3341b736e409 + status: 200 OK + code: 200 + duration: 81.538256ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f12de99-1b81-44c7-9ba7-561185e63651 + status: 200 OK + code: 200 + duration: 64.130423ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7cdaa90e-9724-454d-a351-e363af147b37 + status: 200 OK + code: 200 + duration: 77.964969ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ffca691-10b0-40bb-9af2-f60f718165d4 + status: 200 OK + code: 200 + duration: 74.036141ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88e511bd-4b2d-4654-962c-ed7dd28fa0d0 + status: 200 OK + code: 200 + duration: 72.928168ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84529b00-78e2-43aa-80b4-dd47f3672f51 + status: 200 OK + code: 200 + duration: 66.924704ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 312e1305-29b2-4331-b6c0-375e86adc81e + status: 200 OK + code: 200 + duration: 85.238808ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 55a645d7-b97b-4669-9bbd-913a2153ddf9 + status: 200 OK + code: 200 + duration: 81.773423ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef803ddc-f905-4680-847e-31d84ab59d45 + status: 200 OK + code: 200 + duration: 68.572075ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4dc3c37-89e9-44d1-ac4b-4af952c61381 + status: 200 OK + code: 200 + duration: 62.675806ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8172559d-7a7a-4cf3-920a-570785c79958 + status: 200 OK + code: 200 + duration: 73.546068ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec542bc2-8b25-4e93-b40d-bf1bf96480b2 + status: 200 OK + code: 200 + duration: 71.116062ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:48:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df0a41a8-d38b-481c-9c78-474afdaac4fc + status: 200 OK + code: 200 + duration: 70.364326ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15664d75-951f-48f3-88ef-0eb51766c6f1 + status: 200 OK + code: 200 + duration: 82.818892ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 81ccf8eb-b7ca-4d4a-a036-ab16ffc0081e + status: 200 OK + code: 200 + duration: 62.134799ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4fa1f47-d9b0-437c-96a9-931a5273dcdb + status: 200 OK + code: 200 + duration: 66.589294ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 74c49992-ee7f-425f-bc21-57043a497870 + status: 200 OK + code: 200 + duration: 69.884515ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78c4492c-7227-4439-8564-3fb807a1543b + status: 200 OK + code: 200 + duration: 64.887181ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8060a0f4-45a9-4050-a1eb-787c944041a4 + status: 200 OK + code: 200 + duration: 77.659926ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba604da7-8963-4239-9dab-20e0c8093568 + status: 200 OK + code: 200 + duration: 54.33245ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 915d67de-69a8-4d57-bb4c-348d6b06b198 + status: 200 OK + code: 200 + duration: 77.947466ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d699333a-9f01-448d-a063-896a38509c8b + status: 200 OK + code: 200 + duration: 76.150645ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8445a1c3-4af7-4fa5-aaa0-52fdec19274b + status: 200 OK + code: 200 + duration: 75.31982ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b523bc5-cfce-4e97-8820-cd4be71fa7e7 + status: 200 OK + code: 200 + duration: 66.552657ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:49:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 927889f5-7396-482d-bac0-517fe99992af + status: 200 OK + code: 200 + duration: 71.157121ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f5547b5-4e1a-41df-bac4-6c2a9c639506 + status: 200 OK + code: 200 + duration: 79.206453ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43c644be-d199-4790-98ff-84aa3593dcfb + status: 200 OK + code: 200 + duration: 73.304857ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c465ef6-c891-48ca-a98b-fe2c6850c076 + status: 200 OK + code: 200 + duration: 80.369615ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6738b95-c4c1-4266-b615-a14f77188aa1 + status: 200 OK + code: 200 + duration: 71.760856ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 915bf6b7-15a2-4aa5-978c-9aadf8ffdd1b + status: 200 OK + code: 200 + duration: 67.499239ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f2b0b83-255f-4734-842f-850e52faa19f + status: 200 OK + code: 200 + duration: 75.632487ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 156df7c6-b9ba-4e14-adac-4c2240d5bef1 + status: 200 OK + code: 200 + duration: 146.941976ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d99af72a-5e1e-44c2-89af-bb966e59a7b2 + status: 200 OK + code: 200 + duration: 72.3993ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cd5d0a64-51bd-4fa4-bf30-a64d1c44f8ab + status: 200 OK + code: 200 + duration: 71.292577ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 469132a6-e7a5-411c-88e4-ce130b4ea1ea + status: 200 OK + code: 200 + duration: 69.418622ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 085824b2-a677-483f-9dde-f73fc6059c1e + status: 200 OK + code: 200 + duration: 63.94739ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:50:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d6d04fe-ded2-4fa5-b088-1d9ee3f3ad91 + status: 200 OK + code: 200 + duration: 68.350972ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2cd59d46-f035-4960-bb9c-32aff10a58cb + status: 200 OK + code: 200 + duration: 70.086984ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc6b3186-c45e-4fce-83a9-254aa43a0de0 + status: 200 OK + code: 200 + duration: 68.729762ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b0e4f668-3e81-4364-a3d1-3f7945100d3d + status: 200 OK + code: 200 + duration: 70.789225ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61a3833b-ac97-4140-a10f-0c7e6d155c9e + status: 200 OK + code: 200 + duration: 150.564445ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f05c3c0d-b8e0-4c91-a15a-f0ef035305ab + status: 200 OK + code: 200 + duration: 67.8415ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a155ecb-4309-48d6-98c6-d30db4033a01 + status: 200 OK + code: 200 + duration: 54.22031ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23f518c0-5dc4-42c0-8f33-b7964cbd8728 + status: 200 OK + code: 200 + duration: 85.438695ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2716e4a-78a9-4604-b8f0-770c59e3c813 + status: 200 OK + code: 200 + duration: 470.453325ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9310579a-9d26-4a30-a60a-bf6f03392017 + status: 200 OK + code: 200 + duration: 72.657725ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df7f413d-ad17-4b54-a7b3-b59ec8eea835 + status: 200 OK + code: 200 + duration: 60.61721ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fec5e105-4b38-43aa-a372-1f7245eba1c1 + status: 200 OK + code: 200 + duration: 70.721733ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1161b256-4748-4b65-ad6a-f85736205898 + status: 200 OK + code: 200 + duration: 32.375392ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b348801c-58a7-4038-aa7a-41980f2c9e3c + status: 200 OK + code: 200 + duration: 32.990053ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e101f05-87d1-4e5a-9f27-6c2b77700c24 + status: 200 OK + code: 200 + duration: 64.382758ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b216a4aa-7b36-457f-9cb1-08c7d40df4f2 + status: 200 OK + code: 200 + duration: 119.613655ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b14f5905-b1f3-4832-a090-5c33d1d7c5b6 + status: 200 OK + code: 200 + duration: 77.061916ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:51:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b4396bd4-31d9-44e3-bd5b-86fa6cca78ad + status: 200 OK + code: 200 + duration: 62.059146ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ee280b94-a96d-4857-b33b-286e27b4c01f + status: 200 OK + code: 200 + duration: 57.310527ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd584c9e-aac2-42b3-b719-8aa3be96b2e0 + status: 200 OK + code: 200 + duration: 53.661269ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49a595e6-f683-4cf6-adf3-607dacbd60d5 + status: 200 OK + code: 200 + duration: 63.074024ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db7c338e-6fed-41de-971b-90f69b55e651 + status: 200 OK + code: 200 + duration: 72.992672ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 044c0244-bb75-4ca2-9973-209e5e8970bf + status: 200 OK + code: 200 + duration: 72.175882ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4351d1be-53a0-41b1-8a1b-4428001ea23f + status: 200 OK + code: 200 + duration: 70.545245ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17a286b1-a88e-4c46-a27d-b112816399c4 + status: 200 OK + code: 200 + duration: 77.110746ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 99c8d170-60c9-448d-8dab-971a5eae2170 + status: 200 OK + code: 200 + duration: 64.67416ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aca2b016-ea87-410e-b0ee-4274505dc503 + status: 200 OK + code: 200 + duration: 79.512304ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 860bfd98-f7fa-4de8-a2d4-5e044a5e266c + status: 200 OK + code: 200 + duration: 63.564699ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:40:44.082518Z","endpoints":[{"dns_records":["7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7.mgdb.fr-par.scw.cloud"],"id":"0d1b4b09-b794-4747-9434-1725b4a55fb8","ips":[],"port":27017,"public":{}}],"id":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","name":"test-mongodb-basic1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5cb72abc-3cb0-43f6-969a-be7c7cd81054 + status: 200 OK + code: 200 + duration: 84.987477ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + 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":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68962a59-aa02-467c-9a58-13875eb8a090 + status: 404 Not Found + code: 404 + duration: 24.161672ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7 + 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":"7ae4f1d3-af91-4b9d-8020-3cc65b9af2d7","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:52:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90906c66-b57f-4c04-a1ca-2907c9982a1a + status: 404 Not Found + code: 404 + duration: 29.617294ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml new file mode 100644 index 0000000000..f73bd638d4 --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml @@ -0,0 +1,9221 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 321 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-from-snapshot","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:51:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5798a2a8-f065-4d96-be49-f54ab7b2da52 + status: 200 OK + code: 200 + duration: 822.660114ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:51:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f74db690-0cf6-43fc-87d5-f117a5487b42 + status: 200 OK + code: 200 + duration: 98.950018ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:51:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1c65d4d-5d91-41ba-a0a9-ee1e0150299a + status: 200 OK + code: 200 + duration: 136.730348ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:51:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47c739a6-6d8b-4fa6-aa5d-7a5f0a23390e + status: 200 OK + code: 200 + duration: 98.420695ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:51:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b0052af4-5085-4795-b9dc-e45ebaaa2dc6 + status: 200 OK + code: 200 + duration: 67.926366ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:51:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84634ab3-f369-491a-826b-5e9f7543a5ef + status: 200 OK + code: 200 + duration: 96.506007ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:51:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b078d761-c501-4f94-940b-0a65c08f82ea + status: 200 OK + code: 200 + duration: 82.304746ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:51:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b8097e8-d27c-402d-94f2-ac5876e2450d + status: 200 OK + code: 200 + duration: 98.265988ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aab4257c-67c4-4ded-8b0f-1e2b1d1e6044 + status: 200 OK + code: 200 + duration: 471.627564ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d79ebe4-4aa2-4c81-8578-b0554a1628f4 + status: 200 OK + code: 200 + duration: 625.512917ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba73def6-55bf-4025-a52e-c42dc5942bbd + status: 200 OK + code: 200 + duration: 65.774475ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d4b97d44-02a6-4e4c-b12b-5e61dd0f9b1d + status: 200 OK + code: 200 + duration: 81.472916ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 55caa714-754c-4f9d-b9ca-9bfc2c1e5201 + status: 200 OK + code: 200 + duration: 79.953314ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63c295b8-79b2-4ecb-8024-904b09ea195a + status: 200 OK + code: 200 + duration: 117.823919ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cd3694f4-be67-4ca5-9a85-b70e604d66ac + status: 200 OK + code: 200 + duration: 75.969091ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68a861a0-0732-490e-8e05-9aa292b3bf5c + status: 200 OK + code: 200 + duration: 70.853302ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 068b4542-589b-4d1b-b9b3-e8c7ffd141d3 + status: 200 OK + code: 200 + duration: 97.960246ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af89505a-2fe0-4dfb-bc76-e9d52582ba25 + status: 200 OK + code: 200 + duration: 98.63716ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c6f09da-ef86-4a9a-a2bf-4b138cc29fee + status: 200 OK + code: 200 + duration: 74.903732ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:52:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c0f9f0e-1b3c-4274-8178-6413d997ed20 + status: 200 OK + code: 200 + duration: 81.105682ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0061207-94fc-4ce4-b1c8-27969ff1ce24 + status: 200 OK + code: 200 + duration: 65.957983ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09b05391-25f2-42da-9c55-c93c4a48ec00 + status: 200 OK + code: 200 + duration: 73.333118ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fd11b03-e4f0-4406-b5bb-305fb217a661 + status: 200 OK + code: 200 + duration: 98.162671ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2160504f-72c5-4784-821e-716d07d6f18d + status: 200 OK + code: 200 + duration: 56.986726ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9531b949-75c5-4178-bec2-59ada49ef980 + status: 200 OK + code: 200 + duration: 88.970605ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f68e0849-115a-4979-b649-4e4eee8192bb + status: 200 OK + code: 200 + duration: 76.141801ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d47c1268-fba2-4eb4-9371-b86d6d96954b + status: 200 OK + code: 200 + duration: 70.768533ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ea3a1e2-9f02-4a44-92c0-7968c7937e12 + status: 200 OK + code: 200 + duration: 71.65151ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ed2a070-8cdf-4815-ac37-61b3b1855d24 + status: 200 OK + code: 200 + duration: 77.027284ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d0a0623-0e22-454d-9dad-4bca27f4fa09 + status: 200 OK + code: 200 + duration: 96.076782ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - daabdc42-083d-45ad-8412-4ea9a4c0398c + status: 200 OK + code: 200 + duration: 72.795281ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:53:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce91ef97-daf4-4240-9a9a-fe2299317ac6 + status: 200 OK + code: 200 + duration: 74.732886ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f41dc4a3-641a-46db-9b89-20d869e049a6 + status: 200 OK + code: 200 + duration: 71.144398ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e47fad80-c2be-48e8-ac2d-4cfbff64c6ff + status: 200 OK + code: 200 + duration: 78.555719ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77230e0b-befb-4acc-968e-33884c462365 + status: 200 OK + code: 200 + duration: 79.144512ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2f5bec5-a640-42ec-83e5-5947e851ddb1 + status: 200 OK + code: 200 + duration: 66.861547ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05ba798b-c263-40d6-85b5-9eb128b04e18 + status: 200 OK + code: 200 + duration: 78.842874ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5481dd0a-74f6-473f-a511-7471faa298da + status: 200 OK + code: 200 + duration: 78.571751ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0db944a-389b-4945-bc8a-66d20215e641 + status: 200 OK + code: 200 + duration: 62.486684ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7df92a51-ef3c-427a-a49e-2d7a9ea7c4da + status: 200 OK + code: 200 + duration: 78.112977ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16c14a17-ba3f-47d3-83f7-ca728a7b6004 + status: 200 OK + code: 200 + duration: 59.949615ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b8e6608-0f66-4522-9d78-1665f6c2daa7 + status: 200 OK + code: 200 + duration: 65.843023ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:54:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a39514a-675d-455f-9f1b-58b3f0dceb17 + status: 200 OK + code: 200 + duration: 82.867892ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ed833c26-92be-448b-9c61-7518f9204de4 + status: 200 OK + code: 200 + duration: 84.994868ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe356e40-74ac-4704-bf0e-7f5efd16cf54 + status: 200 OK + code: 200 + duration: 79.717617ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 348800cb-3729-48c3-b71e-332f7fab43a7 + status: 200 OK + code: 200 + duration: 74.033434ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce4f97bb-8636-44f1-a589-d713df641bb9 + status: 200 OK + code: 200 + duration: 71.183898ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c4a5b6d-4da2-4ffa-85f3-cc370edca755 + status: 200 OK + code: 200 + duration: 70.138031ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ae2fab65-ce85-428a-a943-9a4c273bad86 + status: 200 OK + code: 200 + duration: 76.154408ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d34f5bf0-0466-4801-a942-a86edc9271fa + status: 200 OK + code: 200 + duration: 88.301296ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2dc0e1d-3ccb-431b-a966-c565a9300e99 + status: 200 OK + code: 200 + duration: 429.100734ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bbab6a73-d557-4456-a520-da5aeab3cee4 + status: 200 OK + code: 200 + duration: 81.224853ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 11a60c60-7956-433a-a94e-8565d594d996 + status: 200 OK + code: 200 + duration: 79.144343ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f976eb2-c930-44ad-b6df-96da94227318 + status: 200 OK + code: 200 + duration: 433.806189ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:55:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14f40557-d45d-49f9-b12a-ac3f02a52194 + status: 200 OK + code: 200 + duration: 73.481438ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ff1b993-a5fb-4634-b1f7-8a1e7e8b504d + status: 200 OK + code: 200 + duration: 197.43897ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76e21be3-80e7-485f-b267-abeb60c73037 + status: 200 OK + code: 200 + duration: 82.899137ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ee8f113-3069-4b12-925a-ac15b5fb0ccd + status: 200 OK + code: 200 + duration: 67.296211ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ca7fddd-7fc6-4fbb-aecb-40959a90ba5c + status: 200 OK + code: 200 + duration: 70.465701ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d414b73-0b0d-4168-b880-5cae14be61de + status: 200 OK + code: 200 + duration: 73.841072ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 913fb221-9deb-4282-b02c-0e65ca0482e7 + status: 200 OK + code: 200 + duration: 66.754053ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2caf0ef-e2c4-4d1b-9201-e3f1fca01bc6 + status: 200 OK + code: 200 + duration: 68.239738ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca69a64c-75f3-4a88-8b5b-ae9843d6f011 + status: 200 OK + code: 200 + duration: 69.79817ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 229562a0-9285-4407-b3da-2e63782ba8ae + status: 200 OK + code: 200 + duration: 434.214366ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d91c02e9-a7ec-45fe-8fab-92b4ad640b70 + status: 200 OK + code: 200 + duration: 80.338483ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 408651bd-0fce-4243-a197-0497529accb1 + status: 200 OK + code: 200 + duration: 80.200924ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:56:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a2d07df-5f3a-4fdd-adba-bbeaf8d1a634 + status: 200 OK + code: 200 + duration: 80.871161ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 884fa30e-fd0c-4ec1-b069-a573c321c9b0 + status: 200 OK + code: 200 + duration: 82.61348ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f773603e-32b7-4d38-8730-72af490605c7 + status: 200 OK + code: 200 + duration: 67.393271ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02ebaf25-d0c9-4830-b473-41e118c3524d + status: 200 OK + code: 200 + duration: 81.434195ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4460bb9f-2fb2-4f2c-b48b-a17eee8e8f52 + status: 200 OK + code: 200 + duration: 64.519646ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26145487-aa84-4603-a343-795df7afc143 + status: 200 OK + code: 200 + duration: 65.505905ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c55a41b2-b5a0-4fbd-9c23-8667cf99f218 + status: 200 OK + code: 200 + duration: 22.334812ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 60 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 383 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "383" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6c4e544-0e4a-4bf9-9dd1-f0fe47adc08e + status: 200 OK + code: 200 + duration: 294.162326ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 416 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "416" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9035b819-d310-45eb-be78-4f83e732b58f + status: 200 OK + code: 200 + duration: 67.5206ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 416 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "416" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da0c1422-1143-494a-bc12-2ae3739565c4 + status: 200 OK + code: 200 + duration: 87.361452ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 447 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-15T12:57:24.910039Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a693743a-4c04-4f6b-8eca-51213d82d059 + status: 200 OK + code: 200 + duration: 100.870804ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 447 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-15T12:57:24.910039Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc8d2327-a69b-41db-96d4-c00919d08e5f + status: 200 OK + code: 200 + duration: 33.396751ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"instance_name":"restored-mongodb-from-snapshot","node_type":"MGDB-PLAY2-NANO","node_number":1,"volume":{"volume_type":"sbs_5k"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/6818fb63-3def-4cad-987f-aae0dbe3b004/restore + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 849eb029-6837-4999-bda5-ca340dc93f71 + status: 200 OK + code: 200 + duration: 619.238238ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5862c25-a558-4873-a446-86328f16cf7e + status: 200 OK + code: 200 + duration: 65.496164ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6bc9522c-c65f-46ba-8b65-5b373efe21ad + status: 200 OK + code: 200 + duration: 75.283903ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 93047d4b-4247-437f-b564-c6f6d3072162 + status: 200 OK + code: 200 + duration: 72.451922ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c2374d4-4dba-4477-8495-910d04cde7fe + status: 200 OK + code: 200 + duration: 94.365103ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:57:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5280d62-8f2c-469d-b5b9-bf94e5262d69 + status: 200 OK + code: 200 + duration: 64.757269ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb7a2e91-dfdd-473e-8ed9-652f6f64a06c + status: 200 OK + code: 200 + duration: 67.44302ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb3d8a5e-b846-4aaa-b450-83aa7e50bb1e + status: 200 OK + code: 200 + duration: 86.17344ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac12cb71-bf7d-40a4-aaa9-6486bb5d3db2 + status: 200 OK + code: 200 + duration: 422.491845ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24c3fc30-1856-4750-aaa7-09d615d13668 + status: 200 OK + code: 200 + duration: 73.813641ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - edf5d852-802c-473c-b526-2765e6c3cc08 + status: 200 OK + code: 200 + duration: 72.637148ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 157e6f79-1ae1-4adf-b93f-3f05c10bf552 + status: 200 OK + code: 200 + duration: 76.048067ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04500f7c-d4f3-41c6-887f-230af1c24316 + status: 200 OK + code: 200 + duration: 62.704401ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bad56342-ed27-4515-b220-30198a2a0b99 + status: 200 OK + code: 200 + duration: 66.941451ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1b59379-668a-489e-a04e-04a492d8c51e + status: 200 OK + code: 200 + duration: 88.249703ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4d26b102-fdf5-4d72-92fe-06b0ac2d0830 + status: 200 OK + code: 200 + duration: 80.686156ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a577c37c-1b93-49bc-89c5-53c811439fbd + status: 200 OK + code: 200 + duration: 72.38006ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b21f53c-824f-4266-977f-7ec0e87125a9 + status: 200 OK + code: 200 + duration: 66.731997ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf40cdcf-2f73-4d6b-9c0d-866e1418314c + status: 200 OK + code: 200 + duration: 80.208047ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0253ae59-1a5d-417d-a19c-61885aed7ac9 + status: 200 OK + code: 200 + duration: 76.684419ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4dbba9bb-6ada-4bc8-aeb6-f1c0a702b424 + status: 200 OK + code: 200 + duration: 61.911467ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 512aea5d-810a-4d5a-a292-31f485d0c1dd + status: 200 OK + code: 200 + duration: 64.582734ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4edfb43-9ce0-4590-b922-17ed28983bff + status: 200 OK + code: 200 + duration: 70.942761ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a900ee47-5d86-4c01-ba17-4f58ccee21c8 + status: 200 OK + code: 200 + duration: 78.694514ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a62e6967-f806-47db-afa7-662353b86fdc + status: 200 OK + code: 200 + duration: 61.642827ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ed05f6e-df5a-43b0-9c5e-17e44cc9b175 + status: 200 OK + code: 200 + duration: 73.893245ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa04d171-1840-4152-9d5b-98738f168ea7 + status: 200 OK + code: 200 + duration: 80.068532ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e055583-ca0f-4496-8270-bcb897b564ec + status: 200 OK + code: 200 + duration: 69.769758ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a744f1a-2642-47e3-a6ab-93ba30335917 + status: 200 OK + code: 200 + duration: 78.388896ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 12:59:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9fe038eb-ab55-4579-9e2f-5f3d039f7f92 + status: 200 OK + code: 200 + duration: 60.310913ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5721ef30-2851-4a3c-be95-6fdba644d759 + status: 200 OK + code: 200 + duration: 85.861183ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56b4038f-a068-4bac-9377-55e981b34e57 + status: 200 OK + code: 200 + duration: 698.186449ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a358d789-63d4-44fd-8eb0-dec276b6c542 + status: 200 OK + code: 200 + duration: 104.023966ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2d1d126-18c4-44cd-8c12-8ee627321ff6 + status: 200 OK + code: 200 + duration: 104.890386ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9748c6da-6258-4ab5-b62e-2bbf5e3db3f0 + status: 200 OK + code: 200 + duration: 57.534224ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f021df5-9150-44bf-9b8e-b37703df43d9 + status: 200 OK + code: 200 + duration: 78.739027ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 48076651-4665-4715-886c-bc9ba15a37ee + status: 200 OK + code: 200 + duration: 68.15699ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c33bde45-563a-49c5-b118-3b71209428d4 + status: 200 OK + code: 200 + duration: 438.371527ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21fc8763-f45a-4f02-9e0d-808dd1b3dc42 + status: 200 OK + code: 200 + duration: 72.075368ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f945079-42cd-41ae-837e-16e1d88488f4 + status: 200 OK + code: 200 + duration: 70.136145ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15a07bfb-231e-42c7-86f7-bd930d5b6c2b + status: 200 OK + code: 200 + duration: 82.195518ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:00:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e63834f6-2649-490d-bfd7-88c9d52a42d8 + status: 200 OK + code: 200 + duration: 69.293062ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 987940de-6c06-4822-917f-932985d2eb8e + status: 200 OK + code: 200 + duration: 63.282704ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb7aa654-c5ef-48e6-8327-67b72b4799d9 + status: 200 OK + code: 200 + duration: 72.717596ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fc6c5d1-a0b7-4205-9c8c-566f4d28c26d + status: 200 OK + code: 200 + duration: 84.400456ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5c99e30-dddb-4605-9fdc-629434a3d7f0 + status: 200 OK + code: 200 + duration: 76.21942ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65e6b8ed-5473-4a0d-8994-289becd3f44a + status: 200 OK + code: 200 + duration: 460.904733ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c4548520-6042-47db-93ef-0c59481812de + status: 200 OK + code: 200 + duration: 78.623439ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56789eb4-1a8a-40f5-a5a7-78b52eca59e4 + status: 200 OK + code: 200 + duration: 64.890339ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1b968207-dc93-4d9a-b54e-4ab6e83f9ee0 + status: 200 OK + code: 200 + duration: 85.563089ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26b3ebc5-81bb-4314-a850-86c2c39c74ee + status: 200 OK + code: 200 + duration: 79.644226ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c07a39cd-f8b8-4388-b742-6fce44c3530d + status: 200 OK + code: 200 + duration: 287.204945ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:01:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3d00702c-c707-4537-af9d-397019bcbbef + status: 200 OK + code: 200 + duration: 61.263ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 54a88a35-b46d-4a8c-ac3b-0a873aa4cfea + status: 200 OK + code: 200 + duration: 77.705045ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3747fc7a-4404-4cb7-b4ab-fa87df3f2b2f + status: 200 OK + code: 200 + duration: 89.284218ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 222d20a9-0048-4c3f-ae7c-4c638da8ae4c + status: 200 OK + code: 200 + duration: 100.685827ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f70c4b91-4b59-4029-bd84-3b4c9e0bfe5e + status: 200 OK + code: 200 + duration: 72.498015ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6982b24-1c18-4d97-9957-7f981eeaefe9 + status: 200 OK + code: 200 + duration: 82.93963ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23a751b5-0f0c-4e03-b0ef-9d228696a078 + status: 200 OK + code: 200 + duration: 86.141609ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 32a00c54-40be-4090-b8c2-d602e78cd28f + status: 200 OK + code: 200 + duration: 73.328002ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa58744c-3f9a-41d7-92d1-06900e77752a + status: 200 OK + code: 200 + duration: 67.083783ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36291763-1d85-49f6-9922-810bba75acec + status: 200 OK + code: 200 + duration: 68.60964ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cbc320f6-0663-4108-b75c-c7982260df0f + status: 200 OK + code: 200 + duration: 64.287206ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8dd82535-b518-4a9c-aad6-9b20cd92925f + status: 200 OK + code: 200 + duration: 277.803758ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:02:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28e52b6f-6d54-4434-b913-844ac0457ed9 + status: 200 OK + code: 200 + duration: 67.848429ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 064d3c03-65cf-4de2-8750-c653a937ed95 + status: 200 OK + code: 200 + duration: 1.063603003s + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4cd2875-84d2-4bdc-a77c-98a2ef3dd436 + status: 200 OK + code: 200 + duration: 713.553159ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ae7f2f45-cf84-4256-bc42-6b74fb5e181a + status: 200 OK + code: 200 + duration: 64.315423ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a005cbee-62b8-4750-be79-e8fbf8a8df22 + status: 200 OK + code: 200 + duration: 66.878157ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d37e9f77-c805-47b4-a73b-e1e8ee50c475 + status: 200 OK + code: 200 + duration: 77.979537ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c347755e-2a83-4194-8e17-123b23988860 + status: 200 OK + code: 200 + duration: 86.876422ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e1340e6-fb14-45c2-8579-3149d07e43e3 + status: 200 OK + code: 200 + duration: 80.948092ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 62399923-039d-47e9-9152-d88048b5b2cd + status: 200 OK + code: 200 + duration: 98.498504ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 48c3abfb-544f-4a03-8601-fbd431fe2bde + status: 200 OK + code: 200 + duration: 76.1183ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7f8fb92-674d-4c34-b1a0-7c13c449049c + status: 200 OK + code: 200 + duration: 78.172073ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d45153f-33f5-4396-8c3d-1858ae5a41a3 + status: 200 OK + code: 200 + duration: 84.507054ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:03:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ccc0d07e-abc2-476f-a5d9-a3693a328068 + status: 200 OK + code: 200 + duration: 56.28076ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72908bc0-8b92-4128-933a-16ae259a9a5a + status: 200 OK + code: 200 + duration: 68.705395ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac6b1916-e056-4bca-b105-3e0786b32299 + status: 200 OK + code: 200 + duration: 85.858907ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59f22ca1-ec4f-43f4-be7a-089ec84d2694 + status: 200 OK + code: 200 + duration: 78.318081ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ca8e23b-68bc-4582-8440-1f48fb846a7a + status: 200 OK + code: 200 + duration: 73.097244ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5225ce4e-721a-486a-8584-a62eb6c677bf + status: 200 OK + code: 200 + duration: 73.708718ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 505637e2-51f8-41ec-9749-651870f04638 + status: 200 OK + code: 200 + duration: 79.781763ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "537" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83a3060c-d794-4551-a7b0-53136cf8968c + status: 200 OK + code: 200 + duration: 71.178581ms + - id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "537" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b0228e7-37cd-474a-a8fd-94271001118c + status: 200 OK + code: 200 + duration: 23.79539ms + - id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "537" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c550dd1-115a-41af-80af-b7d2312647e6 + status: 200 OK + code: 200 + duration: 28.682239ms + - id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8fca84d-e13c-4cc4-b6c9-1c14695a66a7 + status: 200 OK + code: 200 + duration: 71.120248ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 447 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-15T13:04:30.755942Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e770e48a-41aa-4cad-ae22-985ac4213663 + status: 200 OK + code: 200 + duration: 76.877269ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "537" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b166c6a2-b669-489f-99e6-982e5bfd363c + status: 200 OK + code: 200 + duration: 31.383635ms + - id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "537" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9744728c-934b-49ae-b28c-872bdf966447 + status: 200 OK + code: 200 + duration: 35.279531ms + - id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4ab8a0c-0597-49b1-a236-350fa3ba4e0f + status: 200 OK + code: 200 + duration: 152.6647ms + - id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d72c431d-4904-4e66-b219-7dd3b9ade6d2 + status: 200 OK + code: 200 + duration: 80.781168ms + - id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ee835d9-1f2a-47d5-b95e-747308e76388 + status: 200 OK + code: 200 + duration: 78.507796ms + - id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c80cd718-e8a4-4aa3-a0ba-41238038dce3 + status: 200 OK + code: 200 + duration: 68.714005ms + - id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e1c71b98-f4eb-4e54-8f61-9a584c3fcfc3 + status: 200 OK + code: 200 + duration: 71.873074ms + - id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:04:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 71648d77-dee2-4c98-9c52-51f04af03a9d + status: 200 OK + code: 200 + duration: 88.222053ms + - id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + 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":"206a710c-2eac-4f09-b7b4-8687f67dda48","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5723cde6-7221-4732-a1ee-4a3a1f437504 + status: 404 Not Found + code: 404 + duration: 51.977454ms + - id: 175 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/6818fb63-3def-4cad-987f-aae0dbe3b004 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 417 + uncompressed: false + body: '{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-15T13:05:02.814585Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "417" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f40db1f2-926a-4cbc-8bdf-925eb1dbbb10 + status: 200 OK + code: 200 + duration: 135.27466ms + - id: 176 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ffa57c29-cfe4-49b7-aa02-8704c1b26917 + status: 200 OK + code: 200 + duration: 65.226974ms + - id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0fe35e87-b28b-4d69-ae1d-473958d36748 + status: 200 OK + code: 200 + duration: 126.654117ms + - id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a059d23f-56c2-477b-9ac7-2193c287c9fc + status: 200 OK + code: 200 + duration: 74.757385ms + - id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35885b13-0fdc-46e8-bacc-d0923c9a73b3 + status: 200 OK + code: 200 + duration: 69.475727ms + - id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ecb4cb2c-2a0d-4008-b2cf-14e2e3541d82 + status: 200 OK + code: 200 + duration: 73.9578ms + - id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39f22aa1-2112-40c2-be3b-a57c31e0dcbf + status: 200 OK + code: 200 + duration: 72.562199ms + - id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20711e70-dd56-47cf-8f51-c918a67a11b1 + status: 200 OK + code: 200 + duration: 69.386696ms + - id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 333e4662-0a73-46c7-a32b-e01b0f655ffe + status: 200 OK + code: 200 + duration: 79.177597ms + - id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06503b43-43d0-46d8-a932-c9ff54762e5c + status: 200 OK + code: 200 + duration: 66.128531ms + - id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + 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":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ea0ddf7-ff7c-4207-976a-4420ad3f6e75 + status: 404 Not Found + code: 404 + duration: 31.271447ms + - id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + 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":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73f47395-cc3c-47c4-b1dc-7ae4b028345d + status: 404 Not Found + code: 404 + duration: 66.107829ms + - id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + 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":"206a710c-2eac-4f09-b7b4-8687f67dda48","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:05:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6819a50-5f37-4003-90be-17e2d77c3b5a + status: 404 Not Found + code: 404 + duration: 30.15201ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml new file mode 100644 index 0000000000..2a5f5884fd --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml @@ -0,0 +1,10593 @@ +--- +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-volume-update1","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83dfea46-427f-4e55-8be4-d2a069095fa4 + status: 200 OK + code: 200 + duration: 338.043052ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0453504-e156-4c8e-9d3a-0a4f2074fe14 + status: 200 OK + code: 200 + duration: 83.930305ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a703c524-2882-45aa-bb71-424addc478ce + status: 200 OK + code: 200 + duration: 54.003058ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1deb2688-30b2-454a-b518-04bcb491814a + status: 200 OK + code: 200 + duration: 103.899394ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 186e8c9f-0420-4dbb-b236-694928fa4b50 + status: 200 OK + code: 200 + duration: 481.812125ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 31d22c74-1a08-4565-aa1d-48bf3d8594e5 + status: 200 OK + code: 200 + duration: 69.626226ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec13d254-419a-4b5e-ae9a-f11ff2b9f7b7 + status: 200 OK + code: 200 + duration: 70.561503ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3035eb19-70e8-4ce5-8b48-c59d35be0bf8 + status: 200 OK + code: 200 + duration: 71.160181ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5c381b2-4dab-4b7b-b2cf-a927dc2a1893 + status: 200 OK + code: 200 + duration: 74.373065ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e01852ad-7096-4ce5-ad41-ad6aa76cd9c8 + status: 200 OK + code: 200 + duration: 64.21048ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db795d16-2c50-4880-9df3-34a06869c950 + status: 200 OK + code: 200 + duration: 68.918395ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 499c9f66-44dc-4f0c-85c4-d5c0d085f593 + status: 200 OK + code: 200 + duration: 83.722873ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1f14023-091e-4e58-ab33-76ab016c9e27 + status: 200 OK + code: 200 + duration: 71.029925ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3804d416-2c7c-48e8-91f2-4ca4cb45ac5f + status: 200 OK + code: 200 + duration: 64.851137ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 200fca49-b27d-4ad5-ae78-7ed6736adabf + status: 200 OK + code: 200 + duration: 87.286303ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ea8bf7d-86c5-4749-ba63-98427bc4d949 + status: 200 OK + code: 200 + duration: 61.982249ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e1339ea-17d8-453c-af9e-138e26bd7fc4 + status: 200 OK + code: 200 + duration: 87.265171ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77ff2374-c672-48e8-a7b6-d8a5ed37c203 + status: 200 OK + code: 200 + duration: 74.230881ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 516ca682-9ee1-46ed-a3e0-05cb7db89bd8 + status: 200 OK + code: 200 + duration: 69.475832ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec918fe8-57d3-4c57-9af7-d7167e0b3c63 + status: 200 OK + code: 200 + duration: 66.703899ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84f68976-1ad7-4a86-9519-66e76bfc407a + status: 200 OK + code: 200 + duration: 80.789618ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1680e602-69d9-4375-9edc-6727d21de530 + status: 200 OK + code: 200 + duration: 77.138923ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 846ee9a9-2ece-4ed2-a2b4-ea6bf0423bc3 + status: 200 OK + code: 200 + duration: 55.032542ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7f0edaa-55cd-4a9c-8b5a-3cd54eae3d3d + status: 200 OK + code: 200 + duration: 71.918072ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7edb614-9b6d-4b21-9b83-ed38b2ce3c39 + status: 200 OK + code: 200 + duration: 78.046525ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dfe806f8-5711-414e-bbd2-455725d20acb + status: 200 OK + code: 200 + duration: 77.502491ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19ea8ee2-f793-42e3-a2e8-d7b7b1e204c7 + status: 200 OK + code: 200 + duration: 56.613004ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91a5ea63-1654-4aab-92e1-573d4e53a624 + status: 200 OK + code: 200 + duration: 60.625963ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fbb88bb7-b6e6-4aa5-adc9-6b08db9d47e1 + status: 200 OK + code: 200 + duration: 64.821505ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1cc567ce-ef07-407a-bd6d-099eee3ef458 + status: 200 OK + code: 200 + duration: 77.031662ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1432a773-5c36-40a5-9247-cbaa4d27193c + status: 200 OK + code: 200 + duration: 60.96633ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6301974-7fc2-4f68-b065-b892be08c1b8 + status: 200 OK + code: 200 + duration: 84.32676ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5b5c1df-59a1-4e7a-834c-38ccebea69fc + status: 200 OK + code: 200 + duration: 72.867402ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c931de8-81da-4a9f-9b4c-8d24e890f9a3 + status: 200 OK + code: 200 + duration: 60.203911ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d5c5dc3-789c-482b-b766-10247e4a74e1 + status: 200 OK + code: 200 + duration: 79.544766ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b504497-d2e4-4747-95ae-c3ac9ae0df1c + status: 200 OK + code: 200 + duration: 62.481678ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dff8e835-e8c1-45b1-b47b-4e3edb13817e + status: 200 OK + code: 200 + duration: 76.723782ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5bd40459-1ed9-4a30-9ad0-57ff72e11467 + status: 200 OK + code: 200 + duration: 420.877166ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 926a8995-dd7a-4e05-8cf3-eaa32553ddc6 + status: 200 OK + code: 200 + duration: 67.673927ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2d6d7f8-83e5-4b3f-9cdd-e95abd132634 + status: 200 OK + code: 200 + duration: 58.459885ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8be8c01d-28ed-4d23-be9e-3ff7a83883fe + status: 200 OK + code: 200 + duration: 73.051184ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b65deed1-18e0-4b85-9b9c-6bdfe49cbc19 + status: 200 OK + code: 200 + duration: 66.686305ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 58ffe97f-5be7-4dc6-88fc-22090f380d36 + status: 200 OK + code: 200 + duration: 87.571911ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a82dcf0d-8d0e-4237-b5d8-2ea6b7a7c85b + status: 200 OK + code: 200 + duration: 57.393917ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 85ed1821-5667-4bb6-b469-2b61e4189b60 + status: 200 OK + code: 200 + duration: 68.434916ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e38b6d2a-3220-4f5d-8ebb-9eeb372833fb + status: 200 OK + code: 200 + duration: 78.660749ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7a006e9e-a3da-499b-b72c-2603904d61f7 + status: 200 OK + code: 200 + duration: 76.754841ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 588cb5ab-ad3b-40fc-bbf6-900d28fa46ee + status: 200 OK + code: 200 + duration: 61.501165ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 757eff31-18d7-4dbd-86ba-d96b74bc4514 + status: 200 OK + code: 200 + duration: 60.477852ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ed33e41a-9eb7-4a91-8ce1-22a55c6edf69 + status: 200 OK + code: 200 + duration: 67.176405ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b6262a8c-cbc9-46ae-a910-35956ff91ea0 + status: 200 OK + code: 200 + duration: 65.916308ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42d94608-e9e3-48dd-b461-bc2d268afb1f + status: 200 OK + code: 200 + duration: 58.07702ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c90dcd82-3b77-44b2-b140-4740f8b6b99d + status: 200 OK + code: 200 + duration: 67.899314ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce985735-ced7-4b5b-915d-2eda851a2b02 + status: 200 OK + code: 200 + duration: 63.34214ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e748cfcd-4c4f-477e-ba15-ed9d3d5bbef6 + status: 200 OK + code: 200 + duration: 61.158304ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90567f75-7bcb-4bbe-892a-56afe13c9655 + status: 200 OK + code: 200 + duration: 65.018803ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a07d912-a7fc-477e-ab45-5d689c0335dd + status: 200 OK + code: 200 + duration: 57.090814ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4fe689fe-7c30-43ad-881a-adfed8e1a138 + status: 200 OK + code: 200 + duration: 76.619437ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf19e155-100c-4aec-b3d2-a432ae375608 + status: 200 OK + code: 200 + duration: 50.759957ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ebfcf9b3-6e40-4a2f-bc05-192faf389d86 + status: 200 OK + code: 200 + duration: 99.696094ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e14069e3-4ad3-4769-908e-b5ed9e405531 + status: 200 OK + code: 200 + duration: 68.871814ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 861854ee-f35e-4c2d-9d15-79755cdc8c46 + status: 200 OK + code: 200 + duration: 59.804087ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 66d36655-587b-419a-8021-bfc5f21c5896 + status: 200 OK + code: 200 + duration: 65.799495ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb986c42-6f7f-4eaa-822a-dce6600bd1d1 + status: 200 OK + code: 200 + duration: 66.332599ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7173d59-315a-4ddd-a105-6c2450bd59ac + status: 200 OK + code: 200 + duration: 61.147746ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23d94ec1-3652-4580-a20f-ed9b8f1b66c1 + status: 200 OK + code: 200 + duration: 140.803299ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5659f4b5-9491-4b49-8807-c58fdbe151ed + status: 200 OK + code: 200 + duration: 64.459959ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b8710192-7602-4c5d-a16a-dbbc2abc88e6 + status: 200 OK + code: 200 + duration: 58.561085ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 983c9f24-174a-4fe8-9196-1980041ae0e8 + status: 200 OK + code: 200 + duration: 60.767508ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a59ed04-ad79-4681-80bb-68142c6a6a0c + status: 200 OK + code: 200 + duration: 71.123071ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28a5ca97-873a-45f6-aee3-fc68a962dc0c + status: 200 OK + code: 200 + duration: 66.958767ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41ae0e06-f41b-4537-b0d5-0734906d4160 + status: 200 OK + code: 200 + duration: 69.692121ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db8485db-9479-4e74-ac67-05cb192bffe6 + status: 200 OK + code: 200 + duration: 73.937085ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ea8cae4-8ae7-427e-82d3-26136742b37d + status: 200 OK + code: 200 + duration: 222.117975ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d03a8c9c-7721-4587-9c69-c81e63063338 + status: 200 OK + code: 200 + duration: 64.5605ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bda6d493-ad90-4d22-b0fb-460a069cda6d + status: 200 OK + code: 200 + duration: 67.851308ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05b93b4e-f695-4c81-b109-e848f8f437f7 + status: 200 OK + code: 200 + duration: 55.773157ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c30d3608-960e-4f11-a554-6475173369c1 + status: 200 OK + code: 200 + duration: 70.746442ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02f38841-6583-445b-b17c-b8b8f367b2cb + status: 200 OK + code: 200 + duration: 75.35731ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6377e898-2408-4178-acd8-ec9bccfee6e5 + status: 200 OK + code: 200 + duration: 66.022594ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6559b0c0-24d0-40c4-9105-deaf37fcbc0c + status: 200 OK + code: 200 + duration: 52.940698ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af5e3108-de3c-4080-8970-e2e51096db67 + status: 200 OK + code: 200 + duration: 66.922704ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69684b71-8878-4b7b-8667-ded3019c2238 + status: 200 OK + code: 200 + duration: 67.321031ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17532c5d-4b47-49ea-9f3b-c4dd75b2a93f + status: 200 OK + code: 200 + duration: 81.880726ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e56c568-5444-4f9b-96c9-d1252eb193a4 + status: 200 OK + code: 200 + duration: 81.466105ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 193881df-85a3-4417-a421-975537bc77a2 + status: 200 OK + code: 200 + duration: 71.378659ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d36136d-5c68-4052-a985-b2f6b07138b9 + status: 200 OK + code: 200 + duration: 70.632483ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 614f14c1-1277-4183-936a-4dea4ec84769 + status: 200 OK + code: 200 + duration: 78.146126ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ef17c2c-9427-4423-9758-5f221afa5606 + status: 200 OK + code: 200 + duration: 59.813512ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08b251a2-6db5-4444-b1bb-1101b9b387b9 + status: 200 OK + code: 200 + duration: 68.647501ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d836f858-08ff-4ff6-b09e-873606783c9d + status: 200 OK + code: 200 + duration: 57.737861ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b3fc569-eaba-4abb-af5b-5a408386c115 + status: 200 OK + code: 200 + duration: 64.354315ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9a7edd8-f270-4447-a2f7-31563112bdee + status: 200 OK + code: 200 + duration: 65.86939ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6635ece3-381e-499a-8526-7002ed6fccc5 + status: 200 OK + code: 200 + duration: 59.713116ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 225059d7-9ac7-4f07-ad6c-fcecb34944ca + status: 200 OK + code: 200 + duration: 64.696021ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2becf00e-dccf-4f7a-82cb-881f744a3e07 + status: 200 OK + code: 200 + duration: 69.954391ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4700890-9b16-4335-b787-dba946424298 + status: 200 OK + code: 200 + duration: 55.023952ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b3f69bc-2474-4452-8f51-be103fd8a204 + status: 200 OK + code: 200 + duration: 74.491774ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a19927bc-f8f0-490d-81c7-2071606d4311 + status: 200 OK + code: 200 + duration: 79.03509ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea4a3e12-68a4-4b67-a0f3-03b475670f07 + status: 200 OK + code: 200 + duration: 51.798779ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d4874e37-3809-44ac-b38f-3cb9d4856d98 + status: 200 OK + code: 200 + duration: 65.611534ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb03ee39-b713-4afd-9b37-29a09a6ab98e + status: 200 OK + code: 200 + duration: 58.557369ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ddc2d44-c7b6-42d6-9084-d12ed2bea8d5 + status: 200 OK + code: 200 + duration: 173.050858ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97e8ab15-f72d-4858-8099-b0e1c02d2cc7 + status: 200 OK + code: 200 + duration: 68.099713ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 443efc3a-936f-49a2-b996-2b45c7e6de09 + status: 200 OK + code: 200 + duration: 72.549668ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e6a225c-dc26-4fb9-918d-c947b436e4e1 + status: 200 OK + code: 200 + duration: 63.821523ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2bb8840d-759e-43f6-8157-2f27ab73e98e + status: 200 OK + code: 200 + duration: 72.983557ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb4a549b-51fd-4e96-a271-47ab45ac0fac + status: 200 OK + code: 200 + duration: 56.945215ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de57e706-510f-4318-9f4e-1063a0818521 + status: 200 OK + code: 200 + duration: 75.582724ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 305a9cd8-84ad-467d-b2fc-83c99e26688a + status: 200 OK + code: 200 + duration: 76.060292ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 223a5258-f909-4703-be2f-f0a8a4f0d2ca + status: 200 OK + code: 200 + duration: 68.884837ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ad6a840-e777-4f77-9797-fb6670f99e3f + status: 200 OK + code: 200 + duration: 85.169826ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d3e75dc8-f3be-454c-a082-b821431ccd58 + status: 200 OK + code: 200 + duration: 67.381027ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 66df933c-ce76-4df8-b016-497b365735d7 + status: 200 OK + code: 200 + duration: 72.333426ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb890195-db3d-446e-b7bf-addb42f6f93a + status: 200 OK + code: 200 + duration: 73.949626ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb394583-7fb8-449c-baf6-a9e72c3c398b + status: 200 OK + code: 200 + duration: 59.032135ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f392251-9a12-49aa-9604-83ad25b10e7f + status: 200 OK + code: 200 + duration: 63.056066ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4626d578-3e2b-4c99-ae87-0bd9a07ab05e + status: 200 OK + code: 200 + duration: 67.799972ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 64f5caa6-7eb5-47d9-be78-eb72c44c4e71 + status: 200 OK + code: 200 + duration: 70.088804ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 477971e4-3b57-4e2b-adf2-b22b98949bc6 + status: 200 OK + code: 200 + duration: 59.956253ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52a1e914-8247-4724-a7b9-1dbaf239fc93 + status: 200 OK + code: 200 + duration: 85.467241ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1cd67945-024f-496a-825e-95ce338a8455 + status: 200 OK + code: 200 + duration: 59.5168ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70fa8ae6-af42-474f-adf3-620604bbbe2d + status: 200 OK + code: 200 + duration: 69.341067ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dece1c57-2e91-4cfe-b933-9275819dedf5 + status: 200 OK + code: 200 + duration: 64.945293ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de41439f-7e6d-4fc5-ad3d-0a490f4487bb + status: 200 OK + code: 200 + duration: 82.698236ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa9ce1c9-6ff2-486d-974c-3813005c1dda + status: 200 OK + code: 200 + duration: 54.165466ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 033ee30e-feb9-43bb-ac0f-2ea7257189b0 + status: 200 OK + code: 200 + duration: 71.885982ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d769859b-6ae3-4aad-a3ef-5b87e3ff79e4 + status: 200 OK + code: 200 + duration: 429.612691ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba111efc-a81e-4dcf-9076-ffdb16a3e293 + status: 200 OK + code: 200 + duration: 62.326287ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a0c9300-6ad6-4895-8b74-0d33af4b8edc + status: 200 OK + code: 200 + duration: 71.014355ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 834a9a7d-91ab-44a3-a549-f1e2ccc57dc2 + status: 200 OK + code: 200 + duration: 64.090068ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec67bd0d-a3f7-4371-80ac-fbf7f67c5e33 + status: 200 OK + code: 200 + duration: 82.561432ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6bc4233-dc3c-4042-974d-f97ae837c5a6 + status: 200 OK + code: 200 + duration: 70.067103ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 140b47f9-5951-4878-bb93-f59d81a4ad6d + status: 200 OK + code: 200 + duration: 70.091483ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 706c5935-273c-46ab-ba76-0f455e748995 + status: 200 OK + code: 200 + duration: 59.208629ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6397f824-152b-4269-8938-54775a0414c2 + status: 200 OK + code: 200 + duration: 67.304407ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0bba60f-bbb7-4a1c-ae36-7624a4be4841 + status: 200 OK + code: 200 + duration: 63.521879ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a8d9e83-e172-4038-ad34-5c85bfb2ba66 + status: 200 OK + code: 200 + duration: 79.862202ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e7b3a8f-e21b-499a-b0df-84ed721cfa25 + status: 200 OK + code: 200 + duration: 52.676927ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5875ced-1700-4aed-b5f6-f906cda48162 + status: 200 OK + code: 200 + duration: 76.129019ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a700869-7fb4-4502-b7be-821a4a7f662b + status: 200 OK + code: 200 + duration: 64.307362ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6ca7a05-8ec8-4ffb-8f7e-731a9d3788b1 + status: 200 OK + code: 200 + duration: 60.373302ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf12e43a-d070-480d-9a2a-7d5ff4d0b017 + status: 200 OK + code: 200 + duration: 71.735599ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69ee8a3c-bfa1-4f6e-8f15-203a4a206f27 + status: 200 OK + code: 200 + duration: 66.66051ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 556ce618-4c59-4902-8abf-0fe3c830fb63 + status: 200 OK + code: 200 + duration: 70.875754ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41d74dd2-c84d-4433-91d4-e7d97f440af7 + status: 200 OK + code: 200 + duration: 61.786677ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46c6a8e3-606d-49fd-a105-808c4874c60c + status: 200 OK + code: 200 + duration: 72.027484ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ea72ef4-ad16-420d-a197-1a7a8466bbc8 + status: 200 OK + code: 200 + duration: 75.494271ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7adf8a8-e75c-4bfc-b6db-b5af5ff4b5b1 + status: 200 OK + code: 200 + duration: 76.429922ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7cfcad19-022d-4f30-8884-fd4635c4f8f0 + status: 200 OK + code: 200 + duration: 78.720666ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6d19006-796e-494b-b87d-b1d92cffe200 + status: 200 OK + code: 200 + duration: 63.516231ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c66ff772-6b5b-4610-b281-16c77f8bc20e + status: 200 OK + code: 200 + duration: 65.529381ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 541 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "541" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b716aaa-fe08-4ec3-a824-fab8717a9737 + status: 200 OK + code: 200 + duration: 68.544181ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c8c3f880-3588-4558-be26-97f91deb537d + status: 200 OK + code: 200 + duration: 90.609606ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70995f41-986e-48fb-811b-78910ea866e9 + status: 200 OK + code: 200 + duration: 72.983073ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d20fa015-b2ba-4b81-b122-e6d422bb1308 + status: 200 OK + code: 200 + duration: 26.255727ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77898fef-588c-4255-840b-80ddbdef4955 + status: 200 OK + code: 200 + duration: 31.062059ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c4cd9ee-be6c-43fc-a863-337e32a3259e + status: 200 OK + code: 200 + duration: 68.831969ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"volume_size":10000000000}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105/upgrade + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1df5810b-7526-42ff-9ce5-9665d2205c8b + status: 200 OK + code: 200 + duration: 136.535511ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e170ea96-f6d5-4155-a930-5f0982b72076 + status: 200 OK + code: 200 + duration: 26.054858ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 122a57b6-4377-4ff0-b45e-b3cb567da80b + status: 200 OK + code: 200 + duration: 70.571805ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c613eb9a-a2bb-4daa-a1a7-0b859f7a93c3 + status: 200 OK + code: 200 + duration: 66.475959ms + - id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 762e1483-2f3d-43ff-9713-20cf9b38bd22 + status: 200 OK + code: 200 + duration: 34.048919ms + - id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7ef71fb-f3fe-4a7d-aa9f-00553f6707ad + status: 200 OK + code: 200 + duration: 50.663675ms + - id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 101d1374-a385-4bb0-aa74-51acf754e99b + status: 200 OK + code: 200 + duration: 24.565604ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6bc33a8c-4acc-4175-9878-f092fda77f20 + status: 200 OK + code: 200 + duration: 26.187648ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49b86eb2-4af3-4c0a-81a6-2cc5b9e4dc95 + status: 200 OK + code: 200 + duration: 68.756379ms + - id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d7c6de05-d922-4cfc-a8ae-a517864a9b11 + status: 200 OK + code: 200 + duration: 73.794458ms + - id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f1163465-151b-46c0-88e0-b90563e78de9 + status: 200 OK + code: 200 + duration: 64.455874ms + - id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4d31f05-0bc7-4bc7-b67f-f8537b5ae446 + status: 200 OK + code: 200 + duration: 58.463467ms + - id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46a21c3d-8791-47a2-95c7-1e0698fb2275 + status: 200 OK + code: 200 + duration: 73.138665ms + - id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4f1304e2-b033-45c8-8dd5-7be65276bef2 + status: 200 OK + code: 200 + duration: 58.971831ms + - id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a6949320-41a8-4e49-8f6c-c3e699b36f74 + status: 200 OK + code: 200 + duration: 88.220432ms + - id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 31f1fa19-d90b-4422-a288-5de9e04beee4 + status: 200 OK + code: 200 + duration: 57.728602ms + - id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa71fd66-8a63-49b8-8672-4f92c670009b + status: 200 OK + code: 200 + duration: 39.869655ms + - id: 175 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76faf50b-6dd4-4766-89d3-f1af856b76d0 + status: 200 OK + code: 200 + duration: 63.30882ms + - id: 176 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5918afc-3f19-48d7-8dfa-b861154b42b7 + status: 200 OK + code: 200 + duration: 63.671481ms + - id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c43d105e-0a90-497f-acd7-0b657b7af8dd + status: 200 OK + code: 200 + duration: 70.325967ms + - id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d266bdf3-e6ec-433f-b60c-60730e3e1f45 + status: 200 OK + code: 200 + duration: 73.442029ms + - id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35a3faf0-ec1b-4165-9327-48fdae8057ac + status: 200 OK + code: 200 + duration: 100.732623ms + - id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a948b1a-0648-43bc-8ab4-17b5aee29535 + status: 200 OK + code: 200 + duration: 73.508061ms + - id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3675656c-7066-4c56-ab5b-218515445b05 + status: 200 OK + code: 200 + duration: 63.859785ms + - id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2ec8727-de8d-4a35-85fb-428ee97f8387 + status: 200 OK + code: 200 + duration: 135.646828ms + - id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac4e43ce-b52b-4669-9cf9-271ed70b213f + status: 200 OK + code: 200 + duration: 61.664814ms + - id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3dfca2b-5cb6-4301-af80-8e1020140dcf + status: 200 OK + code: 200 + duration: 58.734906ms + - id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b59f1066-9e41-4f9f-ad09-54781c38d75e + status: 200 OK + code: 200 + duration: 76.97508ms + - id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40149b63-d3f1-494d-aacc-01dabf1a38d4 + status: 200 OK + code: 200 + duration: 63.045626ms + - id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 62c9cdde-59fd-428e-a254-59613c7f09d8 + status: 200 OK + code: 200 + duration: 81.416154ms + - id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 580847b5-ed95-468e-94b6-aebdbab9cf8d + status: 200 OK + code: 200 + duration: 73.605267ms + - id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98f5eb2d-c725-47f3-8e5e-2d621a99259c + status: 200 OK + code: 200 + duration: 75.05254ms + - id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6954176f-e932-43c0-970d-490e47b69ab1 + status: 200 OK + code: 200 + duration: 66.355874ms + - id: 191 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b9fcc216-ea49-430e-8092-23a2ad30de1c + status: 200 OK + code: 200 + duration: 61.224712ms + - id: 192 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 542 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "542" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e6e1dde-c011-4fbc-9427-bf8672a46508 + status: 200 OK + code: 200 + duration: 69.673925ms + - id: 193 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c172048f-30da-453a-abb4-578ee456731b + status: 200 OK + code: 200 + duration: 97.603312ms + - id: 194 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 13 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35d590c3-23ce-44c0-abd4-61e851f795c6 + status: 200 OK + code: 200 + duration: 99.258052ms + - id: 195 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b76d09d-9bcf-4827-804c-f55b15f3e2a6 + status: 200 OK + code: 200 + duration: 60.362131ms + - id: 196 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97030115-4c9b-4fc6-a33d-0e29795f84cd + status: 200 OK + code: 200 + duration: 38.5063ms + - id: 197 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 338f104c-8c63-4f8a-8c84-ef6468462914 + status: 200 OK + code: 200 + duration: 41.988888ms + - id: 198 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b2e21939-ccb2-4975-95d8-bae9821ae425 + status: 200 OK + code: 200 + duration: 30.795883ms + - id: 199 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 666ad77f-4f24-42c1-90bb-cd8692554355 + status: 200 OK + code: 200 + duration: 81.052123ms + - id: 200 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01c0164b-2304-4977-8359-ffa8c6918fb2 + status: 200 OK + code: 200 + duration: 157.742226ms + - id: 201 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75022337-0d74-4bb4-9c2b-06774ab18151 + status: 200 OK + code: 200 + duration: 67.773695ms + - id: 202 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - edb4dbad-af20-4af9-b98b-e65948e16fc7 + status: 200 OK + code: 200 + duration: 70.614557ms + - id: 203 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ad97b7e-094e-4532-ae01-4389d7db7ada + status: 200 OK + code: 200 + duration: 51.527631ms + - id: 204 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7b94add-0b82-48f0-bbe2-819c848341ca + status: 200 OK + code: 200 + duration: 70.72435ms + - id: 205 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12375cd8-25cd-48ef-9aa4-697cd395bfff + status: 200 OK + code: 200 + duration: 69.350823ms + - id: 206 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dd702104-c5ec-4fa2-80c0-0574857ba75f + status: 200 OK + code: 200 + duration: 99.381425ms + - id: 207 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 95ebe6a9-87a1-4b93-af4b-bcaf9f0dc29c + status: 200 OK + code: 200 + duration: 61.932438ms + - id: 208 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59a974cc-15b7-4c07-a86f-b3d761c057fa + status: 200 OK + code: 200 + duration: 85.433453ms + - id: 209 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a57e7b4e-67a4-4cf3-bf17-e04aa16500ff + status: 200 OK + code: 200 + duration: 59.595412ms + - id: 210 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5502580-891f-493f-b52b-9937255a170b + status: 200 OK + code: 200 + duration: 85.365638ms + - id: 211 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:35:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 66ad90d2-b048-4fa2-8ce7-238a177fc7a6 + status: 200 OK + code: 200 + duration: 62.364198ms + - id: 212 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:36:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70ddd40b-6008-476f-80bd-e9f98bbb75da + status: 200 OK + code: 200 + duration: 84.124441ms + - id: 213 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:36:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1431223c-a080-4119-9325-a43e5e2365ab + status: 200 OK + code: 200 + duration: 75.852133ms + - id: 214 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + 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":"212e27f8-a02d-477e-9b0d-13badca38105","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:36:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4657942e-0de2-4af6-adc5-9b8d0e3d83c7 + status: 404 Not Found + code: 404 + duration: 32.088776ms + - id: 215 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + 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":"212e27f8-a02d-477e-9b0d-13badca38105","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:36:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a6bd347d-daa3-4a35-b1b9-11bae39cc724 + status: 404 Not Found + code: 404 + duration: 40.540011ms diff --git a/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml new file mode 100644 index 0000000000..9641a39151 --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml @@ -0,0 +1,9807 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 314 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PRO2-XXS","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43989850-b9c2-443f-b062-6c323f8d675e + status: 200 OK + code: 200 + duration: 261.328068ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2309c453-8eae-4655-b9c7-f52b49d5770e + status: 200 OK + code: 200 + duration: 74.206011ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e62bf052-5bd9-4e35-a276-e4a9855c9534 + status: 200 OK + code: 200 + duration: 63.536956ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf1d054f-ff59-4189-a980-da1a4eb8b777 + status: 200 OK + code: 200 + duration: 138.156262ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3dbe31e1-c2b1-42eb-ae2d-5e658b21fcd7 + status: 200 OK + code: 200 + duration: 29.438396ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97d2dcbf-cf7d-4269-b2ff-99fac457670c + status: 200 OK + code: 200 + duration: 25.362325ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f8b3e95-fed2-4167-9761-172972668130 + status: 200 OK + code: 200 + duration: 68.688525ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0fda6d8d-04b2-4149-8d7c-6348d23239cf + status: 200 OK + code: 200 + duration: 68.817008ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6355cae7-5ded-4903-bd68-fd8c0f92c131 + status: 200 OK + code: 200 + duration: 70.865649ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 369e2d35-a76a-4779-b113-15fb786bbd16 + status: 200 OK + code: 200 + duration: 73.564585ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69def0d0-dcdc-49aa-b374-ff2f226757e0 + status: 200 OK + code: 200 + duration: 25.816581ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b64f8dbc-67ce-47fc-940f-5593e81ba672 + status: 200 OK + code: 200 + duration: 24.497778ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:19:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9dd3f23e-b905-4839-b9de-dbf74700dee2 + status: 200 OK + code: 200 + duration: 73.214361ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5af17892-312c-4736-8e89-3349818dd257 + status: 200 OK + code: 200 + duration: 71.370978ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d72852d0-1365-407b-b9a3-1b8cd7e05611 + status: 200 OK + code: 200 + duration: 54.280518ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a314d18-b668-4964-a1dc-2c103f553098 + status: 200 OK + code: 200 + duration: 34.255244ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 87b4a746-9314-4b52-95c3-2f2f53f1b1e1 + status: 200 OK + code: 200 + duration: 69.389463ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b734397-e09e-4223-a692-3d53371bb8e6 + status: 200 OK + code: 200 + duration: 64.773259ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc6825d4-5625-42e4-895d-72d322b1ce8d + status: 200 OK + code: 200 + duration: 81.982682ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8d6ee5d-e57f-4da4-97c4-c6b7e9a2ff0e + status: 200 OK + code: 200 + duration: 58.306058ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12f547dc-49bc-4bf5-b85e-41004c0de680 + status: 200 OK + code: 200 + duration: 68.674531ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88ceea3d-f3b5-4f44-b2b5-e8775e165c79 + status: 200 OK + code: 200 + duration: 26.532926ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3290379a-0a70-471f-8f12-3027bb69be82 + status: 200 OK + code: 200 + duration: 71.286318ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0283d07f-e80d-40de-894e-ad9f3c03b58d + status: 200 OK + code: 200 + duration: 57.775222ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:20:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b70938e-1919-4a3c-b7eb-12b0d31a9354 + status: 200 OK + code: 200 + duration: 67.485246ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1195527-eb5b-49c3-bd6d-9c824d24f951 + status: 200 OK + code: 200 + duration: 78.677894ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9672db31-c725-4575-ac25-a85d822c6852 + status: 200 OK + code: 200 + duration: 64.20079ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 218018dd-af37-4c85-9970-50f9b3b42f73 + status: 200 OK + code: 200 + duration: 79.420996ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4221988-e674-465f-89f7-1f84d881672e + status: 200 OK + code: 200 + duration: 69.586539ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 27fb19a9-7138-4824-80a0-27b77fd6b97a + status: 200 OK + code: 200 + duration: 70.999067ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a616f91b-329a-489e-9fad-94cc14188003 + status: 200 OK + code: 200 + duration: 66.751623ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10626e7e-2da3-436e-a9c0-4018d896fc18 + status: 200 OK + code: 200 + duration: 75.098233ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 718b1829-98f1-464a-9bbd-e5b646622adf + status: 200 OK + code: 200 + duration: 67.003176ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b19d55ba-d3b8-4900-83f7-6b9d8b314c22 + status: 200 OK + code: 200 + duration: 77.618721ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e93dca61-7717-4fa6-87c2-614f4da71dcc + status: 200 OK + code: 200 + duration: 63.505427ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04009ad2-8c9a-4f00-9a86-ee3d62dc915a + status: 200 OK + code: 200 + duration: 69.695753ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:21:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c525ecbf-f231-4dd5-808f-ed3099773fdd + status: 200 OK + code: 200 + duration: 76.048549ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23ec9431-8007-430f-80ef-f5d8a8a6c113 + status: 200 OK + code: 200 + duration: 62.861938ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c375f57b-1312-496a-94af-569953f7a38b + status: 200 OK + code: 200 + duration: 72.675388ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 66879591-03fd-421a-a100-ff5d53f4acf6 + status: 200 OK + code: 200 + duration: 71.770589ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec59cfc9-9d8f-42c3-81d6-0a3cf6742551 + status: 200 OK + code: 200 + duration: 420.581806ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec73b7a9-6fb5-44df-98be-ae84fa6ffda4 + status: 200 OK + code: 200 + duration: 66.924415ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e9bcdf46-b79a-4d27-8b24-43a550b2c46e + status: 200 OK + code: 200 + duration: 58.882766ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a312b0e6-9b06-4973-85cb-6497f3eba237 + status: 200 OK + code: 200 + duration: 79.583061ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a5658cd-37b7-4d7e-bf7c-5cc99e040df0 + status: 200 OK + code: 200 + duration: 61.356609ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d912937e-8679-4206-a219-2db885bc61ac + status: 200 OK + code: 200 + duration: 86.459912ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 404a284a-27aa-4617-b8a3-d5f951480acd + status: 200 OK + code: 200 + duration: 70.116035ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:22:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3d6d5940-5941-49dc-b1b0-6c35cf170ab6 + status: 200 OK + code: 200 + duration: 60.789038ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5be806bc-1653-4a81-95ed-fc245fbaf193 + status: 200 OK + code: 200 + duration: 72.168302ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 939504be-d1cb-4f41-80e5-1a7b623a7c71 + status: 200 OK + code: 200 + duration: 59.23792ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ca52137-7042-406e-bfef-94f88dc3b779 + status: 200 OK + code: 200 + duration: 60.546ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b925d7b-269c-49d4-a193-7ec5adece49b + status: 200 OK + code: 200 + duration: 70.56585ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41f3f607-11d6-424f-80ab-b537cefd83c5 + status: 200 OK + code: 200 + duration: 68.881642ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7a756a0d-7353-49a0-a07e-be24fe1f217b + status: 200 OK + code: 200 + duration: 67.187446ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8554af7e-614b-4bf4-bab5-88afab4ab373 + status: 200 OK + code: 200 + duration: 57.559527ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - edf58128-5178-4851-9fbb-1958d156010a + status: 200 OK + code: 200 + duration: 53.447493ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d72d303-08be-417c-8012-43f37d8eee89 + status: 200 OK + code: 200 + duration: 73.3479ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 325e2a98-94f9-4f88-8c59-027136c22a73 + status: 200 OK + code: 200 + duration: 65.842293ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3c8bc77-5cc9-4bcb-a5a2-a92b362626cb + status: 200 OK + code: 200 + duration: 66.743155ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:23:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3422059e-b3ea-4d4c-a10f-735d22005671 + status: 200 OK + code: 200 + duration: 59.76798ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a957ede-418c-41f7-a5ba-d101cc9822eb + status: 200 OK + code: 200 + duration: 63.637067ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0765c73-7f6c-4c88-9fcd-437b7e2565f9 + status: 200 OK + code: 200 + duration: 65.211092ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de257147-af78-4a73-aa91-f6dd87222182 + status: 200 OK + code: 200 + duration: 99.570479ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6b8d04e-2a2c-46ef-a09f-ece5299e3349 + status: 200 OK + code: 200 + duration: 71.005207ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06f54cc6-a875-4f4b-9a36-1d254469c03a + status: 200 OK + code: 200 + duration: 61.21222ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35d56ccf-c0e9-4a13-a44c-4d62c37fb6d9 + status: 200 OK + code: 200 + duration: 69.469052ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f36ea6b7-fb5f-4af0-b282-61c085064e83 + status: 200 OK + code: 200 + duration: 59.569743ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b87ae0c-c4f8-4581-be5e-e9cbc49d39c7 + status: 200 OK + code: 200 + duration: 60.826574ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f30c9351-51a9-44b1-be6f-2fab2e8ee999 + status: 200 OK + code: 200 + duration: 141.54348ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e35e5992-3903-4b92-a8da-83096978ebb2 + status: 200 OK + code: 200 + duration: 58.543594ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9acb4d55-ec7a-4684-80ec-27157b8f33cc + status: 200 OK + code: 200 + duration: 66.359394ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:24:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eac18557-4daf-41c0-b5ce-6f5318703ae7 + status: 200 OK + code: 200 + duration: 76.35044ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 646dba65-d306-4e60-9fe3-36655d42061f + status: 200 OK + code: 200 + duration: 62.284332ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c072cae4-efcb-4fad-831a-26d52794ed11 + status: 200 OK + code: 200 + duration: 56.815023ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6f74942-3651-4462-950c-55c5531fe96b + status: 200 OK + code: 200 + duration: 59.941601ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 985b59cc-e0db-4a05-aeb6-bee3a2a11c8e + status: 200 OK + code: 200 + duration: 85.108764ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c523e333-11e9-4b63-8d6e-a4a9ec2fe7db + status: 200 OK + code: 200 + duration: 251.106249ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa24c869-06d2-45e3-96ac-003dfd5e1a75 + status: 200 OK + code: 200 + duration: 49.070324ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6385e768-9a2c-4a1d-bdd7-ea7284cdee03 + status: 200 OK + code: 200 + duration: 64.109605ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e20e2ce4-d050-42ea-8e72-86514dc1f443 + status: 200 OK + code: 200 + duration: 70.498072ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2968b70d-b8e0-4c77-a1e8-94aacfa83c21 + status: 200 OK + code: 200 + duration: 56.580411ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f09872a-e963-4061-807f-e0f376145fed + status: 200 OK + code: 200 + duration: 65.731685ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 163cb36b-e1ad-4fee-9eec-7ab013b738ee + status: 200 OK + code: 200 + duration: 59.383833ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:25:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d0305643-9621-42b9-a268-41314f049ea8 + status: 200 OK + code: 200 + duration: 74.365404ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2836ba73-c0cf-4375-918b-7ebb69e2abc9 + status: 200 OK + code: 200 + duration: 53.238157ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6bfce436-4d9d-4e08-a3e9-5ef02495da7c + status: 200 OK + code: 200 + duration: 72.263478ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c9b9a6b-f745-468e-be4c-74fd80f3baa2 + status: 200 OK + code: 200 + duration: 79.604792ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ec65610-9c10-4464-bd73-d3f4e667030d + status: 200 OK + code: 200 + duration: 76.345261ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b0f02fb-6732-47b4-960f-a3b0d65d13bb + status: 200 OK + code: 200 + duration: 70.393713ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e481c37-7a4a-4bfe-ae28-8cc1297263fa + status: 200 OK + code: 200 + duration: 68.848678ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b17c051c-15eb-44fa-81ca-d108db938dcb + status: 200 OK + code: 200 + duration: 74.842504ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - acb39d8e-01c3-4de5-9673-cbaf030c62c9 + status: 200 OK + code: 200 + duration: 63.709742ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ae62d72f-d331-4f71-908f-26a5fb2f1c64 + status: 200 OK + code: 200 + duration: 79.039036ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65882a5b-6e45-44b3-a3fb-121b66fe17b4 + status: 200 OK + code: 200 + duration: 56.154533ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 13f5c4c6-8c5e-43eb-8cda-1617b1343af3 + status: 200 OK + code: 200 + duration: 56.167712ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:26:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15236665-38d7-49d7-b459-630ec05be387 + status: 200 OK + code: 200 + duration: 65.674972ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b83aa75-7115-4894-bb18-2f36500d417c + status: 200 OK + code: 200 + duration: 62.655389ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a108ba05-3101-43fd-bf04-b8ed90cc8436 + status: 200 OK + code: 200 + duration: 66.310034ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61119939-044f-4bf0-928e-f6f542c8ec57 + status: 200 OK + code: 200 + duration: 66.602393ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - faf77801-0c9d-49c4-862f-b47cef6d68a6 + status: 200 OK + code: 200 + duration: 51.032229ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91ef982a-5046-468a-badd-8d593dac28ee + status: 200 OK + code: 200 + duration: 73.13731ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be89be26-d1d7-4a8f-9c18-f32f10568b3b + status: 200 OK + code: 200 + duration: 68.873579ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5e4addf-8ef9-4a9a-8e33-26a4397aba66 + status: 200 OK + code: 200 + duration: 67.088711ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b09fe286-3388-468e-99d5-bddc0997444a + status: 200 OK + code: 200 + duration: 58.775572ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a42ff57-7332-4b3a-87ae-2fd861fa46be + status: 200 OK + code: 200 + duration: 63.116381ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 406b1180-e2b6-4d40-9322-a798a638d85e + status: 200 OK + code: 200 + duration: 167.152132ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:27:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e642a4f7-da30-4c17-b501-159f80907139 + status: 200 OK + code: 200 + duration: 71.431224ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b211754a-ed99-4c3b-a1e5-7c9dc78e53f4 + status: 200 OK + code: 200 + duration: 64.653068ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63764d02-e645-4cb9-9223-1fcb02122e8c + status: 200 OK + code: 200 + duration: 71.084941ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3862e520-88c6-4d4c-a3fd-2df23437b047 + status: 200 OK + code: 200 + duration: 81.4976ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 141aeb64-eb93-48e8-8c30-9210a8f3970e + status: 200 OK + code: 200 + duration: 64.593297ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9549a571-e6c3-4a56-9326-365b3ff320c9 + status: 200 OK + code: 200 + duration: 65.344968ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 154390fc-a60a-4dec-ba5d-ca3edb3d1858 + status: 200 OK + code: 200 + duration: 71.008059ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90686dd0-b00d-4a44-b14d-aacd1c848c56 + status: 200 OK + code: 200 + duration: 72.024508ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c1575181-1c67-4eda-8405-cc38401873cb + status: 200 OK + code: 200 + duration: 82.747936ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a9a9672-57c4-47b6-8a4a-deec0ecb74d6 + status: 200 OK + code: 200 + duration: 67.357399ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97633a40-7eb5-44ce-afeb-434893f57fa4 + status: 200 OK + code: 200 + duration: 72.374889ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 82daa383-5e6f-435e-81f9-fdf1a23f7ac6 + status: 200 OK + code: 200 + duration: 64.897294ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:28:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d924130-b345-47da-b3a9-d9200e8be19e + status: 200 OK + code: 200 + duration: 66.748444ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63df7ae7-30db-49ff-aef9-ec02fb46f67c + status: 200 OK + code: 200 + duration: 63.387772ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 411dc1f3-979d-4ff1-88ce-674afe78b027 + status: 200 OK + code: 200 + duration: 72.690719ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3fd34ed9-8932-4f44-a8de-bb7ff1898614 + status: 200 OK + code: 200 + duration: 69.232448ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b31422bd-0acf-4b83-9ed2-d8404c09a56c + status: 200 OK + code: 200 + duration: 64.623863ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3d3969e3-f3e8-4832-bf4d-e9fccc56885c + status: 200 OK + code: 200 + duration: 72.214073ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf9b31f4-8a1b-495c-85ee-a3735ffd3f71 + status: 200 OK + code: 200 + duration: 80.734094ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1392fc11-d828-4ccc-9d1b-50848265b339 + status: 200 OK + code: 200 + duration: 69.206538ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e2eab3e-7354-4b32-b544-b6b8c29849c0 + status: 200 OK + code: 200 + duration: 63.172776ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1aa2e182-5849-44c3-a80b-c29695b2d9a6 + status: 200 OK + code: 200 + duration: 74.811008ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8bd98b73-8e9e-4477-9d69-6ae94119fd6e + status: 200 OK + code: 200 + duration: 71.753727ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2e6ae46-f6dc-4456-9003-d32e3b4c5f2e + status: 200 OK + code: 200 + duration: 46.359128ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 564ebdf0-2d32-4c53-84ac-8d3aeb5394f8 + status: 200 OK + code: 200 + duration: 143.470019ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 60 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 376 + uncompressed: false + body: '{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "376" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6994304-33d2-47cd-ada8-b4502e950b57 + status: 200 OK + code: 200 + duration: 162.043662ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 409 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "409" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b05fea3-cc2c-4e90-b9d5-159dbb516a4c + status: 200 OK + code: 200 + duration: 179.742202ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 409 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "409" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:29:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ece5a3f-2290-42af-906f-d079bdc2d9ac + status: 200 OK + code: 200 + duration: 26.696144ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 440 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T14:29:53.001721Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "440" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d0baec7-49a1-4b54-9dfa-de59d839652a + status: 200 OK + code: 200 + duration: 70.75557ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 440 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T14:29:53.001721Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "440" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eaede18e-225c-462b-9922-616cc78c5bad + status: 200 OK + code: 200 + duration: 62.713075ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c68d39f-cdcb-42f1-b9f0-5e178e71c812 + status: 200 OK + code: 200 + duration: 80.688241ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 440 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T14:29:53.001721Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "440" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 802675e7-d6db-46dc-b386-94b4f222454d + status: 200 OK + code: 200 + duration: 36.595368ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3fd32b2f-8fa8-4600-a54e-d1158988cd0a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 410 + uncompressed: false + body: '{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-14T14:30:03.889810Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "410" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4f50054-30d3-4a8c-b03c-b15c372fba35 + status: 200 OK + code: 200 + duration: 142.839054ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d3cf809-13b0-4e9b-a8ca-8e7856c03878 + status: 200 OK + code: 200 + duration: 62.499962ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c10a029-d67c-4b41-a240-0b84278e14cf + status: 200 OK + code: 200 + duration: 106.42744ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 196c8cbf-3570-4143-902c-076c83255a69 + status: 200 OK + code: 200 + duration: 26.09181ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b257100-f36e-479e-b6e2-2ccd5300090d + status: 200 OK + code: 200 + duration: 67.926449ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b2b8572-3470-4192-b793-a9f189961ccc + status: 200 OK + code: 200 + duration: 288.613062ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79ddea56-c746-4d58-b175-2213bf07b605 + status: 200 OK + code: 200 + duration: 65.688942ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b80cf9c-cc80-47fe-b63f-7294710ed5a7 + status: 200 OK + code: 200 + duration: 62.134126ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a7265ed-1df7-458c-b7f6-b15ca764b98b + status: 200 OK + code: 200 + duration: 72.680445ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b90af720-e4fb-4bb2-bf22-447742c5a653 + status: 200 OK + code: 200 + duration: 63.366103ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5cb56025-fad5-414d-b8ca-9ad7cd57e41c + status: 200 OK + code: 200 + duration: 69.683634ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc4fa3e8-9c82-4a8d-9447-548a088a15e7 + status: 200 OK + code: 200 + duration: 55.424499ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e4d5aa3-11f7-4c49-a601-624f1da7a63e + status: 200 OK + code: 200 + duration: 71.011564ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:30:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a77e926b-dce2-4dc7-aa93-59229e108a05 + status: 200 OK + code: 200 + duration: 70.075137ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73312ad3-c439-44b8-a5c9-b252de6c477a + status: 200 OK + code: 200 + duration: 65.066711ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d5c8293-e17b-4620-b579-7416b59c18cb + status: 200 OK + code: 200 + duration: 61.62201ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 510936b5-c141-4baa-9c61-54462217ecea + status: 200 OK + code: 200 + duration: 67.474611ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36598d32-002e-4a0a-9444-0bf1957bebdd + status: 200 OK + code: 200 + duration: 64.377328ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6aef2d5e-24f1-46a2-b86c-a2d3064e1e06 + status: 200 OK + code: 200 + duration: 59.628505ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1872164a-08ef-412a-917b-1e253b682721 + status: 200 OK + code: 200 + duration: 70.765317ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b6646f3-62c4-4d5d-8ec6-3705d5c39494 + status: 200 OK + code: 200 + duration: 79.326492ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30e3ec9c-26b8-4e59-88df-d32abf007db9 + status: 200 OK + code: 200 + duration: 63.609688ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07025fd7-1b86-4fc2-ba16-7919f525a57e + status: 200 OK + code: 200 + duration: 62.837663ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3cd8b7b9-f492-481d-848d-83f80bd3451b + status: 200 OK + code: 200 + duration: 70.113133ms + - id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78f8a31e-cc03-413e-aa1f-c662a10ee8ff + status: 200 OK + code: 200 + duration: 60.518067ms + - id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:31:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 694e6160-cf71-4e2c-9080-73b97c7ea456 + status: 200 OK + code: 200 + duration: 73.117426ms + - id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f7a17fe4-0b5d-4598-b169-e96301b7545d + status: 200 OK + code: 200 + duration: 73.095127ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ff8612d-3a92-4f01-a688-27ea9b0f182d + status: 200 OK + code: 200 + duration: 63.797145ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6eaa554c-5974-4db2-a69c-ca1ac3f55dbf + status: 200 OK + code: 200 + duration: 87.601427ms + - id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d45735ba-5dda-46e5-a1ea-42a9118fda0d + status: 200 OK + code: 200 + duration: 66.485481ms + - id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68d19c48-153f-4da7-ad1e-d88608b7b477 + status: 200 OK + code: 200 + duration: 61.755672ms + - id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56d34b89-5b13-4855-b531-b98588dd08a2 + status: 200 OK + code: 200 + duration: 72.076136ms + - id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 272383c1-d695-4aa0-8ea4-c06bf1920c4c + status: 200 OK + code: 200 + duration: 61.576928ms + - id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06d979d6-b33c-4987-971e-b0630c4a9995 + status: 200 OK + code: 200 + duration: 53.422377ms + - id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ccd5f98-5c2b-4c8b-94af-4a6127842a55 + status: 200 OK + code: 200 + duration: 62.154357ms + - id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5d6e15a-5de6-4565-af7f-d5951c3e173f + status: 200 OK + code: 200 + duration: 91.861759ms + - id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - addfbb21-0c51-43eb-99a3-5ea4d109511c + status: 200 OK + code: 200 + duration: 58.92211ms + - id: 175 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:32:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 676b489a-6f45-4dee-a988-e424ba386850 + status: 200 OK + code: 200 + duration: 84.324472ms + - id: 176 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 621a93b9-15df-47b2-8442-c7c9e346904b + status: 200 OK + code: 200 + duration: 80.724615ms + - id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61d1eaf3-3e14-48a7-a436-76f53eecb734 + status: 200 OK + code: 200 + duration: 61.928533ms + - id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43354d79-d1da-4b05-a595-3cb8c9b509a4 + status: 200 OK + code: 200 + duration: 49.734354ms + - id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb2e8a76-8eb9-4154-9aaa-a85b4d39dece + status: 200 OK + code: 200 + duration: 53.289192ms + - id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb63088e-6c62-4d69-a5ca-2a4c1a5554f2 + status: 200 OK + code: 200 + duration: 61.722118ms + - id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 85c43f40-1df5-40ac-acec-09262f85da94 + status: 200 OK + code: 200 + duration: 67.525409ms + - id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da89e7f7-613d-4e86-8da8-bbac8ddc7d8c + status: 200 OK + code: 200 + duration: 63.412791ms + - id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b310829c-82d7-4420-89f0-241367a6608b + status: 200 OK + code: 200 + duration: 85.213308ms + - id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c64d2dde-5c4a-403e-b5ae-8e45401b7c75 + status: 200 OK + code: 200 + duration: 69.199925ms + - id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c9fd7c67-4703-47ca-ad18-8b5ef6c7d364 + status: 200 OK + code: 200 + duration: 78.965832ms + - id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d7cd76e7-eb1e-454e-98dd-db2d6cbe5443 + status: 200 OK + code: 200 + duration: 48.029293ms + - id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:33:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7ed4a0c-413a-4f16-b900-aff731eedce6 + status: 200 OK + code: 200 + duration: 38.221895ms + - id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ba380b6-5eba-4252-b05f-6639fc55da6c + status: 200 OK + code: 200 + duration: 46.55207ms + - id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aba68b02-d1a3-4972-8e2a-41da9c9b9f85 + status: 200 OK + code: 200 + duration: 128.29748ms + - id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d7d2043-138d-459a-8a7d-7bef4107b994 + status: 200 OK + code: 200 + duration: 64.623061ms + - id: 191 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ec90a9d-d98b-4c56-9647-5fc73d5e2157 + status: 200 OK + code: 200 + duration: 80.528209ms + - id: 192 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77989cd0-dfa7-4d7c-b857-1954234a1d5c + status: 200 OK + code: 200 + duration: 71.185348ms + - id: 193 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 45da7da1-6656-49a6-b676-a40424dbecfb + status: 200 OK + code: 200 + duration: 76.395722ms + - id: 194 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dd98afa6-be47-4632-adee-5a1debaa5b59 + status: 200 OK + code: 200 + duration: 57.219664ms + - id: 195 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8b5fb23-137e-4ea4-89d9-af94e7b1fc7f + status: 200 OK + code: 200 + duration: 59.509196ms + - id: 196 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca9adb8c-7014-40ce-8d04-539a73bc9791 + status: 200 OK + code: 200 + duration: 79.279322ms + - id: 197 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 529 + uncompressed: false + body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "529" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 54407eb9-184b-4da3-8a86-8fd57abce0bd + status: 200 OK + code: 200 + duration: 71.73703ms + - id: 198 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + 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":"b834f146-16ee-4130-be00-4709d4ac4a22","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a1e7478-2acb-4c51-a1c4-d789947cc6ef + status: 404 Not Found + code: 404 + duration: 34.396434ms + - id: 199 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 33 + uncompressed: false + body: '{"snapshots":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 14:34:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0199675e-e870-4cc1-a9ea-cbdc0ba37caf + status: 200 OK + code: 200 + duration: 53.964913ms diff --git a/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml new file mode 100644 index 0000000000..1cc8706faa --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml @@ -0,0 +1,7849 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 316 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8950c1f7-1277-45b7-aa69-1ee9b6468bc7 + status: 200 OK + code: 200 + duration: 572.648433ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:42:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2264d5da-8ae4-4851-b38b-c74b99853039 + status: 200 OK + code: 200 + duration: 80.583227ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f73bdac-60dc-4598-9fd4-53c626f11b75 + status: 200 OK + code: 200 + duration: 95.768345ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0837d7b7-afb4-4ec6-b547-a5131909119f + status: 200 OK + code: 200 + duration: 91.033495ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c43db51-232e-4eb9-91a8-a54a104fc397 + status: 200 OK + code: 200 + duration: 67.916624ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e047045b-53fb-4343-bbc2-75a15f5a28e3 + status: 200 OK + code: 200 + duration: 66.36191ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef016c10-8cf5-4017-aa60-04ba5a92b10d + status: 200 OK + code: 200 + duration: 84.632543ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c225988e-512e-48c0-9e96-4420e936ee3b + status: 200 OK + code: 200 + duration: 66.015286ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d127f68c-6d2a-4abc-8e91-36e3b2ef6487 + status: 200 OK + code: 200 + duration: 73.507072ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ee247318-0a2c-4a26-8266-ffba81cddf1e + status: 200 OK + code: 200 + duration: 74.133661ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f16bba58-2267-41d0-b76d-1f30ca3ffda6 + status: 200 OK + code: 200 + duration: 68.748284ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a13d74d-2f0f-4225-a472-1bd758f60163 + status: 200 OK + code: 200 + duration: 75.70689ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9bb723dc-3a00-46d7-8f90-d78faab29f03 + status: 200 OK + code: 200 + duration: 60.749129ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9d1515c-bb1e-4a10-b9ee-27d1cc39cf1c + status: 200 OK + code: 200 + duration: 74.298487ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a413f6a6-e940-4c2a-bd99-5e9f93631ae1 + status: 200 OK + code: 200 + duration: 72.817121ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05d77241-edb8-4067-a92a-f691c07963db + status: 200 OK + code: 200 + duration: 70.04666ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a278dfd9-dcbc-47ac-8733-65f3343b8afd + status: 200 OK + code: 200 + duration: 67.587022ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77f87dd6-baef-4796-97b4-b4a6b040a257 + status: 200 OK + code: 200 + duration: 66.154506ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b644935c-8dff-44af-b349-ee4e9c0e90e9 + status: 200 OK + code: 200 + duration: 66.078636ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83283cee-d49d-42c7-8307-3b9a4a83064b + status: 200 OK + code: 200 + duration: 78.640395ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e9a73080-5c60-442d-be1a-30b7c35ccbf4 + status: 200 OK + code: 200 + duration: 82.511895ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46ff60c3-9401-415a-9d6d-13f4fd10081e + status: 200 OK + code: 200 + duration: 71.823901ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cfae471f-8688-4cdb-b09e-b23a6efdca9d + status: 200 OK + code: 200 + duration: 78.023341ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0da3cbd-abf2-4201-9d96-77a9de2c0b94 + status: 200 OK + code: 200 + duration: 72.694882ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ce40dd8-a5cd-4a8f-bd1f-83bd07526964 + status: 200 OK + code: 200 + duration: 67.670739ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:44:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47625e10-62ba-459c-a47e-2afe72383608 + status: 200 OK + code: 200 + duration: 80.689781ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ed562adc-d4ec-4bd7-b5f8-6dc8643e065e + status: 200 OK + code: 200 + duration: 73.883012ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51026904-12c9-407d-b8e5-da3487b0ac53 + status: 200 OK + code: 200 + duration: 64.033213ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6344906d-33cb-46d8-bfd7-b98840e9327d + status: 200 OK + code: 200 + duration: 65.570112ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d43dc0f-0107-4bc9-a371-1be4010aa860 + status: 200 OK + code: 200 + duration: 76.302ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84ec5fb2-0333-4294-803b-280d42e27652 + status: 200 OK + code: 200 + duration: 69.493262ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41213a0c-b41d-4a63-8375-911c16389c85 + status: 200 OK + code: 200 + duration: 56.105594ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24061fe0-f018-4c08-9d5f-d51620268dad + status: 200 OK + code: 200 + duration: 66.343074ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05238b02-f035-4945-86bb-abc35a3dcb60 + status: 200 OK + code: 200 + duration: 62.263546ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ef2936b-211d-4fa2-8bf8-6fa511146b43 + status: 200 OK + code: 200 + duration: 311.451316ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01010cc8-ae30-4e90-b31f-6743b3c152f5 + status: 200 OK + code: 200 + duration: 60.532715ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:45:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2757a50b-f1a7-4572-aeb1-69bc4af8f552 + status: 200 OK + code: 200 + duration: 65.887927ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f79cd0a-cbb9-4808-a9ab-0a03a7c84340 + status: 200 OK + code: 200 + duration: 62.974995ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2fa90200-717c-493a-8047-591ac80ec0b1 + status: 200 OK + code: 200 + duration: 76.924991ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43a21598-f193-4fd8-af9d-30c9d70cf2cd + status: 200 OK + code: 200 + duration: 71.450878ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fbbf07c0-b807-47ca-b8a0-895551c0998c + status: 200 OK + code: 200 + duration: 71.075386ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 605db160-3455-49a2-9f08-a321fd48d506 + status: 200 OK + code: 200 + duration: 67.507519ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43e42fe3-7fb5-4954-8d06-ef337f65d723 + status: 200 OK + code: 200 + duration: 84.996773ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f060fadb-d590-4b81-9da5-60f948274c08 + status: 200 OK + code: 200 + duration: 67.993096ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f99b21a-284a-4034-8c6b-db59dac14df0 + status: 200 OK + code: 200 + duration: 67.596395ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fc4abb1-289d-4f70-b2c7-f2bcdc4e3726 + status: 200 OK + code: 200 + duration: 78.863385ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 196db20c-3f03-4209-8ec7-89fcd947cf42 + status: 200 OK + code: 200 + duration: 76.525601ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dbac2bbe-757f-4661-9ff6-20ed24129fa9 + status: 200 OK + code: 200 + duration: 66.511582ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:46:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a501f337-8a27-406e-90bf-15d3ef016330 + status: 200 OK + code: 200 + duration: 61.142514ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72d98f13-3fa9-44cd-b68e-a181fb3be24e + status: 200 OK + code: 200 + duration: 61.509344ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d7f0370-86b4-48ab-b0d3-a50f4ff808c2 + status: 200 OK + code: 200 + duration: 84.945303ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 55b77117-7feb-4ff1-9ca1-e527aec4e7c2 + status: 200 OK + code: 200 + duration: 67.779704ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06aef6e1-94b1-444e-866f-618d50a2f45c + status: 200 OK + code: 200 + duration: 71.702047ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0dcf0a57-1b61-4067-bbf5-128f2bb8ea8b + status: 200 OK + code: 200 + duration: 113.551227ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8de46ed-e45d-4156-bb29-46a65063eae1 + status: 200 OK + code: 200 + duration: 67.535121ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8eb07b6d-b95f-4d1c-b5a1-6147c14cf33f + status: 200 OK + code: 200 + duration: 76.844992ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f18cbbd-8e83-4d77-9fc6-2d8329aae079 + status: 200 OK + code: 200 + duration: 75.908448ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9073032c-6ade-4f11-88a8-d5188bfee7b2 + status: 200 OK + code: 200 + duration: 73.514077ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 523e787f-3778-4d52-b962-e69dd11f7262 + status: 200 OK + code: 200 + duration: 76.961861ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10f90332-682f-4a72-b064-b71e6bb2af56 + status: 200 OK + code: 200 + duration: 77.8983ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:47:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f312faeb-c989-4c46-a26d-177a841ba781 + status: 200 OK + code: 200 + duration: 66.9215ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b1ed67ce-79b9-4568-946e-ae0b11e7ddea + status: 200 OK + code: 200 + duration: 58.653618ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88d636dd-bc35-4b62-bf75-4de337c27e66 + status: 200 OK + code: 200 + duration: 72.69591ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 758a1ce1-7777-4219-aed0-a732adea5697 + status: 200 OK + code: 200 + duration: 83.518051ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23b56ea6-c814-472b-b65a-829637a806a2 + status: 200 OK + code: 200 + duration: 66.929654ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ace62d2-11ba-4fd7-b161-6f19aae47baf + status: 200 OK + code: 200 + duration: 73.812725ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 473f4d0e-a5d3-421a-a436-19b0368e5790 + status: 200 OK + code: 200 + duration: 78.962493ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eff6a91a-476b-4a00-bc02-fe2f201474da + status: 200 OK + code: 200 + duration: 77.992621ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8c56e37b-191d-4414-9eac-4972303f5075 + status: 200 OK + code: 200 + duration: 74.132091ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5963b3d0-be47-4f3b-aa5a-f8e0ba56a42b + status: 200 OK + code: 200 + duration: 62.126718ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d86f304f-10ee-4dfa-8727-d82eec12eae6 + status: 200 OK + code: 200 + duration: 68.150027ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0713054b-f8b8-47c5-bf3b-f99c2dacbeb5 + status: 200 OK + code: 200 + duration: 72.258295ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:48:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0bfe2e68-6dd5-4e83-b8c6-f86d23cdf589 + status: 200 OK + code: 200 + duration: 75.625088ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c375845c-5729-4f4b-b441-e29a3541a851 + status: 200 OK + code: 200 + duration: 64.978101ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb311d64-744c-4404-a618-753ea52a9fc1 + status: 200 OK + code: 200 + duration: 60.939429ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 996c349e-dcfd-435c-ab74-8020fb785c37 + status: 200 OK + code: 200 + duration: 68.212826ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f57e05f5-c39d-442b-b7f8-18c6ce1851e7 + status: 200 OK + code: 200 + duration: 67.998167ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b3355bfb-d5ae-43b0-b01b-0de7df34828b + status: 200 OK + code: 200 + duration: 68.238415ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3b03dec-b2b0-4572-985d-e02a21cdd005 + status: 200 OK + code: 200 + duration: 453.15417ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9532f173-dfa1-49bd-b284-264469ac4b02 + status: 200 OK + code: 200 + duration: 81.352087ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a28bc9e2-0a4f-48b3-99a3-574c6ba64e1e + status: 200 OK + code: 200 + duration: 68.064205ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e149f677-36bb-4035-ab48-ba46f9e46b4f + status: 200 OK + code: 200 + duration: 77.813286ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b6ea62eb-8b0e-47ab-94f1-9bbef7231b20 + status: 200 OK + code: 200 + duration: 73.041753ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ad7b572a-d1d1-4f14-b47f-749ff03720a1 + status: 200 OK + code: 200 + duration: 65.635135ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:49:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b741cd25-fd7e-4211-a5a9-870396011392 + status: 200 OK + code: 200 + duration: 64.303398ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72137775-be55-4228-b72b-416071142c37 + status: 200 OK + code: 200 + duration: 61.704312ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd7c16b7-19b4-4430-8d34-ac4105e36865 + status: 200 OK + code: 200 + duration: 69.229692ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6627509-b20f-4307-93fb-7931ce8b06ea + status: 200 OK + code: 200 + duration: 200.469149ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e8dc115-3cd2-4112-8a3d-0e7a167403d7 + status: 200 OK + code: 200 + duration: 65.35377ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f21b36bc-0573-491a-8527-64d686c65567 + status: 200 OK + code: 200 + duration: 75.744718ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f99b9bd2-3b70-4b97-9f53-38d5a6743af6 + status: 200 OK + code: 200 + duration: 76.568322ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e265c6e-db54-491c-aae7-c75c79d5296f + status: 200 OK + code: 200 + duration: 96.232401ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e492af4-d73f-4b7a-9919-6ac74a12cd1f + status: 200 OK + code: 200 + duration: 76.96594ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 571299d0-257b-463e-a1fd-4a2ccb1dd8f9 + status: 200 OK + code: 200 + duration: 84.135418ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8003a0d2-5dea-432a-bc75-8ba3f35bf2e2 + status: 200 OK + code: 200 + duration: 67.563426ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:50:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 680a88a9-6c98-46fe-a289-20a615488946 + status: 200 OK + code: 200 + duration: 73.135622ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ad771d52-3c69-43eb-92d4-eb1c42a85e85 + status: 200 OK + code: 200 + duration: 64.026684ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ebe1244-9102-4a02-9f46-9852e3b63860 + status: 200 OK + code: 200 + duration: 76.53388ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41764eac-d293-4a97-9a6f-932cffdfa53e + status: 200 OK + code: 200 + duration: 75.728196ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2bd0433-ba2f-4586-8ec9-225b8eb6ef08 + status: 200 OK + code: 200 + duration: 185.095227ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f79cff10-9f04-448c-8ccf-dcb88c6e0d78 + status: 200 OK + code: 200 + duration: 67.737447ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d128e54b-5959-4677-974a-47aef06ddc85 + status: 200 OK + code: 200 + duration: 65.738444ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 141ddba3-7dbe-4387-8796-7a89b7264ab0 + status: 200 OK + code: 200 + duration: 61.864447ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6b2fc5e-d668-42b9-a03a-21792f9ecb3a + status: 200 OK + code: 200 + duration: 68.632906ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e6745b6-cbb9-40f8-8b05-3c25a078c32f + status: 200 OK + code: 200 + duration: 64.157465ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5dfc9f08-ce5d-4ff4-82f5-75bd60989aed + status: 200 OK + code: 200 + duration: 65.53673ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b3b50ad9-f14d-43cb-a574-da942e7eff14 + status: 200 OK + code: 200 + duration: 71.019281ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:51:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5bfbeeb-4e96-4aec-8b28-8eadfbfed4fc + status: 200 OK + code: 200 + duration: 71.242616ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 13c17ae4-2f65-49c1-a5e5-a915d813730a + status: 200 OK + code: 200 + duration: 72.756531ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5a0d66e-e5b8-469b-9915-33d9a7e9ed5f + status: 200 OK + code: 200 + duration: 74.468875ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8726de7a-512a-466a-9a2a-4ed8ff0c93b5 + status: 200 OK + code: 200 + duration: 70.030131ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 32ed9652-b913-483a-9ec4-26e087d7ad55 + status: 200 OK + code: 200 + duration: 92.45279ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3318c878-9db9-44d8-8a52-3a1bdd523ae7 + status: 200 OK + code: 200 + duration: 75.742979ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ff151b0e-d5d3-4b5e-b99e-2103e4fa077d + status: 200 OK + code: 200 + duration: 76.193864ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc2a26d1-dabf-4c6d-929e-5a59bd008a3f + status: 200 OK + code: 200 + duration: 67.581819ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 60 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 378 + uncompressed: false + body: '{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "378" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa8fd987-06c4-40c7-b0ec-92b2494f1266 + status: 200 OK + code: 200 + duration: 167.992224ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 411 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 574f517a-e931-4beb-a7e1-f70f29be7023 + status: 200 OK + code: 200 + duration: 83.301877ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 411 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 822ad460-9b40-4227-be3d-89768368f3b1 + status: 200 OK + code: 200 + duration: 74.002213ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 442 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:28.131391Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "442" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e8a57509-63b8-4ef6-91d7-2ee38e4ef208 + status: 200 OK + code: 200 + duration: 74.750173ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 442 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:28.131391Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "442" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53f623c3-382f-4a07-af02-2195e01d74dc + status: 200 OK + code: 200 + duration: 72.071964ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c1dbdd19-a240-4f6f-acb3-e8c60f9f2002 + status: 200 OK + code: 200 + duration: 71.671305ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 442 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:28.131391Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "442" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b728aec9-5833-414c-848f-98189b4e791a + status: 200 OK + code: 200 + duration: 34.706999ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4a1c096f-8711-4b87-891e-fe1729e25a97 + status: 200 OK + code: 200 + duration: 30.42475ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 442 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:28.131391Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "442" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ced26c84-2b44-4c6d-b71f-c57524a2a406 + status: 200 OK + code: 200 + duration: 74.371807ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 63 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"updated-snapshot","expires_at":"2025-09-20T23:59:59Z"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/6db9aed2-8ba7-4b17-8590-5aa826b0fecf + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 412 + uncompressed: false + body: '{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:39.794698Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "412" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e065ec7b-9a3b-4f94-8b74-90e53c3f937c + status: 200 OK + code: 200 + duration: 88.124605ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 445 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:39.794698Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "445" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46e9594d-8f16-440b-9c9b-9742dc4cda34 + status: 200 OK + code: 200 + duration: 37.763953ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 445 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:39.794698Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "445" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c518d69d-b2dc-46ff-bd3b-f8bf9ab7f414 + status: 200 OK + code: 200 + duration: 67.227883ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4ad5c56-99c2-47f1-9da0-e09f7525597b + status: 200 OK + code: 200 + duration: 72.245704ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 445 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:39.794698Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "445" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1dd6e314-c095-4290-954f-c6a96474f693 + status: 200 OK + code: 200 + duration: 30.688191ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/6db9aed2-8ba7-4b17-8590-5aa826b0fecf + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415 + uncompressed: false + body: '{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-14T17:52:41.211858Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "415" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc5acaef-f3a5-497d-8ca1-2689f6f030e4 + status: 200 OK + code: 200 + duration: 121.77533ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8588ac6-a81a-45db-bb63-c9c2f604d5a5 + status: 200 OK + code: 200 + duration: 29.452994ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 151b634b-2425-4a06-b561-7fe5dffb0834 + status: 200 OK + code: 200 + duration: 169.705303ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 31baa378-9398-44ed-a1fb-824a252a719d + status: 200 OK + code: 200 + duration: 27.950778ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65a6ac72-c327-4745-8743-b8049c948ece + status: 200 OK + code: 200 + duration: 81.174117ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd35c1ae-86e9-4946-b3a2-f14225d360e7 + status: 200 OK + code: 200 + duration: 72.600321ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:52:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - abd51292-a7ff-4b30-a2bc-61ea64e8ba1f + status: 200 OK + code: 200 + duration: 62.414906ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4003e5d0-9521-4325-a23b-9b41a445674a + status: 200 OK + code: 200 + duration: 72.068012ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53b1ca43-1939-444e-9de3-58a50815857a + status: 200 OK + code: 200 + duration: 69.811927ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 64665448-6689-48db-8060-20b954a68d84 + status: 200 OK + code: 200 + duration: 294.011627ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 949264e6-c8fe-47ed-9a31-f9ea31f1f98a + status: 200 OK + code: 200 + duration: 256.476629ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7cc254ef-d9a8-483d-8a43-b1a51684fc72 + status: 200 OK + code: 200 + duration: 72.328839ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2bcdcf30-502c-47d9-8797-61becafd36e2 + status: 200 OK + code: 200 + duration: 76.134869ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 143df729-82ed-41aa-a7b6-9c5fb50c8008 + status: 200 OK + code: 200 + duration: 63.387719ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b94530e6-c9ec-4699-b2c0-f6e93d1018a4 + status: 200 OK + code: 200 + duration: 74.772067ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb9f09dc-8b86-4bf3-b75b-181b8e09a7da + status: 200 OK + code: 200 + duration: 81.50446ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a629095-ac16-4003-bc6a-efbcdbaa1b28 + status: 200 OK + code: 200 + duration: 77.853277ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef1f0eb1-a5f5-490c-a140-f2766edea1f9 + status: 200 OK + code: 200 + duration: 75.957558ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:53:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a71c70e8-2b95-491f-919c-f185c7ab0077 + status: 200 OK + code: 200 + duration: 79.576636ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f28014ab-17b6-42c0-a3c6-4a059be10fff + status: 200 OK + code: 200 + duration: 79.129139ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fe71a7d-1889-417f-b043-c6a3a3e0eeee + status: 200 OK + code: 200 + duration: 69.008256ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7c4cf44-ff17-4291-8728-537852a19b5b + status: 200 OK + code: 200 + duration: 67.498501ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51449a85-4e85-4bd0-9a87-7c4d4d585587 + status: 200 OK + code: 200 + duration: 161.740358ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c330a3e-7bce-44d3-a5af-c37e50ed8b00 + status: 200 OK + code: 200 + duration: 64.898938ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - afe70f08-0385-4137-a141-f8e46c459bcb + status: 200 OK + code: 200 + duration: 74.87672ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14776183-5baa-4c03-b3b4-a6c4330197ba + status: 200 OK + code: 200 + duration: 89.361577ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 871667e1-7d92-4788-88cd-0b705b985314 + status: 200 OK + code: 200 + duration: 64.832112ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - abca3e43-fc46-4a49-989b-ec04bf4e446a + status: 200 OK + code: 200 + duration: 60.517576ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:54:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db92f8fd-800d-4430-b3f0-6ca71e70850d + status: 200 OK + code: 200 + duration: 78.730828ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + 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":"33764e24-f4d6-44da-a8ae-d33b0a42de53","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:55:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1223c874-e5b9-4584-818d-d4d1ad148c2e + status: 404 Not Found + code: 404 + duration: 81.157513ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 33 + uncompressed: false + body: '{"snapshots":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 14 Oct 2024 17:55:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b57bc16c-fb45-4a2a-ae89-e1d29e8c5f63 + status: 200 OK + code: 200 + duration: 84.956538ms From 9d0b3d1e558116201a35a60c6a2ceef0253cebe0 Mon Sep 17 00:00:00 2001 From: jremy Date: Tue, 15 Oct 2024 15:10:27 +0200 Subject: [PATCH 06/26] feat(mongodb): delete private network --- internal/services/mongodb/helpers.go | 44 +--------------- internal/services/mongodb/instance.go | 72 --------------------------- internal/services/mongodb/types.go | 35 ------------- 3 files changed, 2 insertions(+), 149 deletions(-) diff --git a/internal/services/mongodb/helpers.go b/internal/services/mongodb/helpers.go index 50528d953b..0668847456 100644 --- a/internal/services/mongodb/helpers.go +++ b/internal/services/mongodb/helpers.go @@ -1,20 +1,15 @@ package mongodb import ( - "bytes" "context" - "fmt" - "sort" "time" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/scaleway-sdk-go/scw" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" "github.com/scaleway/terraform-provider-scaleway/v2/internal/transport" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" ) const ( @@ -31,7 +26,7 @@ func newAPI(m interface{}) *mongodb.API { return mongodb.NewAPI(meta.ExtractScwClient(m)) } -// newAPIWithZone returns a new Redis API and the zone for a Create request +// newAPIWithZone returns a new mongoDB API and the zone for a Create request func newAPIWithZone(d *schema.ResourceData, m interface{}) (*mongodb.API, scw.Zone, error) { zone, err := meta.ExtractZone(d, m) if err != nil { @@ -60,7 +55,7 @@ func newAPIWithRegion(d *schema.ResourceData, m interface{}) (*mongodb.API, scw. return newAPI(m), region, nil } -// NewAPIWithZoneAndID returns a Redis API with zone and ID extracted from the state +// NewAPIWithZoneAndID returns a mongoDB API with zone and ID extracted from the state func NewAPIWithZoneAndID(m interface{}, id string) (*mongodb.API, scw.Zone, string, error) { zone, ID, err := zonal.ParseID(id) if err != nil { @@ -81,18 +76,6 @@ func NewAPIWithRegionAndID(m interface{}, id string) (*mongodb.API, scw.Region, return newAPI(m), region, ID, nil } -func NewAPIWithID(m interface{}, id string) (*mongodb.API, scw.Region, string, error) { - zone, ID, err := zonal.ParseID(id) - if err != nil { - return nil, "", "", err - } - region, err := zone.Region() - if err != nil { - return nil, "", "", err - } - return newAPI(m), region, ID, nil -} - func waitForInstance(ctx context.Context, api *mongodb.API, region scw.Region, id string, timeout time.Duration) (*mongodb.Instance, error) { retryInterval := defaultWaitMongodbInstanceRetryInterval if transport.DefaultWaitRetryInterval != nil { @@ -120,26 +103,3 @@ func waitForSnapshot(ctx context.Context, api *mongodb.API, region scw.Region, i RetryInterval: &retryInterval, }, scw.WithContext(ctx)) } - -func privateNetworkSetHash(v interface{}) int { - var buf bytes.Buffer - - m := v.(map[string]interface{}) - if pnID, ok := m["id"]; ok { - buf.WriteString(locality.ExpandID(pnID)) - } - - if serviceIPs, ok := m["service_ips"]; ok { - // Sort the service IPs before generating the hash. - ips := serviceIPs.([]interface{}) - sort.Slice(ips, func(i, j int) bool { - return ips[i].(string) < ips[j].(string) - }) - - for i, item := range ips { - buf.WriteString(fmt.Sprintf("%d-%s-", i, item.(string))) - } - } - - return types.StringHashcode(buf.String()) -} diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index 8d8cf55f89..047654d7ff 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -3,7 +3,6 @@ package mongodb import ( "context" "errors" - "strings" "time" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" @@ -13,12 +12,10 @@ import ( "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" ) func ResourceInstance() *schema.Resource { @@ -106,58 +103,6 @@ func ResourceInstance() *schema.Resource { "version", }, }, - //endpoint - "private_network": { - Type: schema.TypeSet, - Optional: true, - Description: "Private network specs details", - Set: privateNetworkSetHash, - DiffSuppressFunc: func(k, oldValue, newValue string, _ *schema.ResourceData) bool { - // Check if the key is for the 'id' attribute - if strings.HasSuffix(k, "id") { - return locality.ExpandID(oldValue) == locality.ExpandID(newValue) - } - // For all other attributes, don't suppress the diff - return false - }, - Elem: &schema.Resource{ - Schema: map[string]*schema.Schema{ - "id": { - Type: schema.TypeString, - Required: true, - ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), - Description: "UUID of the private network to be connected to the cluster", - }, - "ips": { - Type: schema.TypeList, - Optional: true, - Computed: true, - Elem: &schema.Schema{ - Type: schema.TypeString, - ValidateFunc: validation.IsCIDR, - }, - Description: "List of IPv4 addresses of the private network with a CIDR notation", - }, - "port": { - Type: schema.TypeInt, - Computed: true, - Description: "The port of your load balancer service", - }, - "dns_records": { - Type: schema.TypeString, - Computed: true, - Description: "The DNS record of your endpoint", - }, - // computed - "endpoint_id": { - Type: schema.TypeString, - Computed: true, - Description: "UUID of the endpoint to be connected to the cluster", - }, - "zone": zonal.ComputedSchema(), - }, - }, - }, // Computed "public_network": { Type: schema.TypeList, @@ -272,19 +217,6 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter createReq.Tags = types.ExpandStrings(tags) } - pn, pnExists := d.GetOk("private_network") - if pnExists { - pnSpecs, err := expandPrivateNetwork(pn.(*schema.Set).List()) - if err != nil { - return diag.FromErr(err) - } - createReq.Endpoints = pnSpecs - } else { - epSpecs := make([]*mongodb.EndpointSpec, 0, 1) - spec := &mongodb.EndpointSpecPublicDetails{} - createReq.Endpoints = append(epSpecs, &mongodb.EndpointSpec{Public: spec}) - } - res, err = mongodbAPI.CreateInstance(createReq, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) @@ -333,10 +265,6 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interfa _ = d.Set("volume_size_in_gb", int(instance.Volume.Size/scw.GB)) } - privateNetworkEndpoints, privateNetworkExists := flattenPrivateNetwork(instance.Endpoints) - if privateNetworkExists { - _ = d.Set("private_network", privateNetworkEndpoints) - } publicNetworkEndpoint, publicNetworkExists := flattenPublicNetwork(instance.Endpoints) if publicNetworkExists { _ = d.Set("public_network", publicNetworkEndpoint) diff --git a/internal/services/mongodb/types.go b/internal/services/mongodb/types.go index e889eb4b63..40f03e62a7 100644 --- a/internal/services/mongodb/types.go +++ b/internal/services/mongodb/types.go @@ -2,43 +2,8 @@ package mongodb import ( mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" ) -func expandPrivateNetwork(data []interface{}) ([]*mongodb.EndpointSpec, error) { - if data == nil { - return nil, nil - } - epSpecs := make([]*mongodb.EndpointSpec, 0, len(data)) - for _, rawPN := range data { - pn := rawPN.(map[string]interface{}) - pnID := locality.ExpandID(pn["id"].(string)) - - spec := &mongodb.EndpointSpecPrivateNetworkDetails{ - PrivateNetworkID: pnID, - } - epSpecs = append(epSpecs, &mongodb.EndpointSpec{PrivateNetwork: spec}) - } - return epSpecs, nil -} - -func flattenPrivateNetwork(endpoints []*mongodb.Endpoint) (interface{}, bool) { - pnFlat := []map[string]interface{}(nil) - for _, endpoint := range endpoints { - if endpoint.PrivateNetwork == nil { - continue - } - pnFlat = append(pnFlat, map[string]interface{}{ - "endpoint_id": endpoint.ID, - "id": endpoint.PrivateNetwork.PrivateNetworkID, - "ips": endpoint.IPs, - "port": endpoint.Port, - "dns_records": endpoint.DNSRecords, - }) - } - return pnFlat, len(pnFlat) != 0 -} - func flattenPublicNetwork(endpoints []*mongodb.Endpoint) (interface{}, bool) { publicFlat := []map[string]interface{}(nil) for _, endpoint := range endpoints { From b76484d0a15582431db2bdd76f6ae98e1a24b037 Mon Sep 17 00:00:00 2001 From: jremy Date: Tue, 15 Oct 2024 16:46:42 +0200 Subject: [PATCH 07/26] t --- internal/provider/provider.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 394b37b09f..296d000628 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -282,6 +282,7 @@ func Provider(config *Config) plugin.ProviderFunc { "scaleway_marketplace_image": marketplace.DataSourceImage(), "scaleway_mnq_sqs": mnq.DataSourceSQS(), "scaleway_mnq_sns": mnq.DataSourceSNS(), + "scaleway_mongodb_instance": mongodb.DataSourceInstance(), "scaleway_object_bucket": object.DataSourceBucket(), "scaleway_object_bucket_policy": object.DataSourceBucketPolicy(), "scaleway_rdb_acl": rdb.DataSourceACL(), From 898ae01556552eb5e5d859dfcd250e13e102a5e1 Mon Sep 17 00:00:00 2001 From: jremy Date: Tue, 15 Oct 2024 16:48:01 +0200 Subject: [PATCH 08/26] feat(mongodb): add data source and docs --- docs/resources/mongodb_instance.md | 70 + docs/resources/mongodb_snapshot.md | 63 + .../services/mongodb/data_source_instance.go | 112 + .../mongodb/data_source_instance_test.go | 78 + internal/services/mongodb/instance.go | 4 + ...urce-mongo-db-instance-by-id.cassette.yaml | 7943 +++++++++++++++++ ...ce-mongo-db-instance-by-name.cassette.yaml | 4611 ++++++++++ 7 files changed, 12881 insertions(+) create mode 100644 docs/resources/mongodb_instance.md create mode 100644 docs/resources/mongodb_snapshot.md create mode 100644 internal/services/mongodb/data_source_instance.go create mode 100644 internal/services/mongodb/data_source_instance_test.go create mode 100644 internal/services/mongodb/testdata/data-source-mongo-db-instance-by-id.cassette.yaml create mode 100644 internal/services/mongodb/testdata/data-source-mongo-db-instance-by-name.cassette.yaml diff --git a/docs/resources/mongodb_instance.md b/docs/resources/mongodb_instance.md new file mode 100644 index 0000000000..8ef3ca1812 --- /dev/null +++ b/docs/resources/mongodb_instance.md @@ -0,0 +1,70 @@ +--- +subcategory: "MongoDB" +page_title: "Scaleway: scaleway_mongodb_instance" +--- + +# Resource: scaleway_mongodb_instance + +Creates and manages Scaleway MongoDB™ instance. +For more information refer to [the API documentation](https://www.scaleway.com/en/docs/managed-databases/mongodb/). + +## Example Usage + +### Basic + +```terraform +resource "scaleway_mongodb_instance" "main" { + name = "test-mongodb-basic1" + 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 + +} +``` + + +### Restore From Snapshot + +```terraform + +resource "scaleway_mongodb_instance" "restored_instance" { + snapshot_id = "${scaleway_vpc_private_network.pn.idscaleway_mongodb_snapshot.main_snapshot.id}" + name = "restored-mongodb-from-snapshot" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 +} +``` + +## Argument Reference + +The following arguments are supported: + +- `version` - (Optional) MongoDB version of the instance. +- `node_type` - (Required) The type of MongoDB intance to create. +- `user_name` - (Optional) Name of the user created when the intance is created. +- `password` - (Optional) Password of the user. +- `name` - (Optional) Name of the MongoDB instance. +- `tags` - (Optional) List of tags attached to the MongoDB instance. +- `volume_type` - (Optional) Volume type of the instance. +- `volume_size_in_gb` - (Optional) Volume size in GB. +- `snapshot_id` - (Optional) Snapshot ID to restore the MongoDB instance from. +- `public_network` - (Optional) Public network specs details. + +## Attributes Reference + +In addition to the arguments above, the following attributes are exported: + +- `id` - The ID of the MongoDB instance. +- `created_at` - The date and time of the creation of the MongoDB instance. +- `updated_at` - The date and time of the last update of the MongoDB instance. + +## Import + +MongoDB™ instance can be imported using the `id`, e.g. + +```bash +terraform import scaleway_mongodb_instance.main fr-par-1/11111111-1111-1111-1111-111111111111 +``` \ No newline at end of file diff --git a/docs/resources/mongodb_snapshot.md b/docs/resources/mongodb_snapshot.md new file mode 100644 index 0000000000..e3d4213b78 --- /dev/null +++ b/docs/resources/mongodb_snapshot.md @@ -0,0 +1,63 @@ + +--- +subcategory: "MongoDB" +page_title: "Scaleway: scaleway_mongodb_snapshot" +--- + +# Resource: scaleway_mongodb_snapshot + +Creates and manages Scaleway MongoDB snapshots. +For more information refer to [the API documentation](https://www.scaleway.com/en/docs/managed-databases/mongodb/). + +## Example Usage + + +```terraform + +resource "scaleway_mongodb_snapshot" "main" { + instance_id = "${scaleway_mongodb_instance.main.id}" + name = "name-snapshot" + expires_at = "2024-12-31T23:59:59Z" +} +``` + + +## Argument Reference + +The following arguments are supported: + +- `instance_id` - (Required) The ID of the MongoDB instance from which the snapshot was created. + +- `name` - (Optional) The name of the MongoDB snapshot. + +- `expires_at` - (Required) The expiration date of the MongoDB snapshot in ISO 8601 format (e.g. `2024-12-31T23:59:59Z`). + +~> **Important:** Once set, `expires_at` cannot be removed. + +- `region` - (Defaults to [provider](../index.md) `region`) The [region](../guides/regions_and_zones.md#regions) in which the MongoDB snapshot should be created. + +## Attributes Reference + +In addition to all arguments above, the following attributes are exported: + +- `id` - The unique identifier of the MongoDB snapshot. + +- `instance_name` - The name of the MongoDB instance from which the snapshot was created. + +- `size` - The size of the MongoDB snapshot in bytes. + +- `node_type` - The type of node associated with the MongoDB snapshot. + +- `volume_type` - The type of volume used for the MongoDB snapshot. + +- `created_at` - The date and time when the MongoDB snapshot was created. + +- `updated_at` - The date and time of the last update of the MongoDB snapshot. + +## Import + +MongoDB snapshots can be imported using the `{region}/{id}`, e.g. + +```bash +terraform import scaleway_mongodb_snapshot.main fr-par-1/11111111-1111-1111-1111-111111111111 +``` \ No newline at end of file diff --git a/internal/services/mongodb/data_source_instance.go b/internal/services/mongodb/data_source_instance.go new file mode 100644 index 0000000000..b1b08b0145 --- /dev/null +++ b/internal/services/mongodb/data_source_instance.go @@ -0,0 +1,112 @@ +package mongodb + +import ( + "context" + "time" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" +) + +func DataSourceInstance() *schema.Resource { + + dsSchema := datasource.SchemaFromResourceSchema(ResourceInstance().Schema) + + datasource.AddOptionalFieldsToSchema(dsSchema, "name", "region", "project_id") + + dsSchema["name"].ConflictsWith = []string{"instance_id"} + dsSchema["instance_id"] = &schema.Schema{ + Type: schema.TypeString, + Optional: true, + Description: "instance id", + ConflictsWith: []string{"name"}, + ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), + } + + return &schema.Resource{ + ReadContext: DataSourceInstanceRead, + Schema: dsSchema, + } +} + +func DataSourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + mongodbAPI, zone, region, err := newAPIWithZoneAndRegion(d, m) + if err != nil { + return diag.FromErr(err) + } + + instanceID, ok := d.GetOk("instance_id") + if !ok { + instanceName := d.Get("name").(string) + res, err := mongodbAPI.ListInstances(&mongodb.ListInstancesRequest{ + Region: region, + Name: types.ExpandStringPtr(instanceName), + ProjectID: types.ExpandStringPtr(d.Get("project_id")), + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + foundInstance, err := datasource.FindExact( + res.Instances, + func(s *mongodb.Instance) bool { return s.Name == instanceName }, + instanceName, + ) + if err != nil { + return diag.FromErr(err) + } + + instanceID = foundInstance.ID + } + + zonedID := datasource.NewZonedID(instanceID, zone) + d.SetId(zonedID) + err = d.Set("instance_id", zonedID) + if err != nil { + return diag.FromErr(err) + } + + getReq := &mongodb.GetInstanceRequest{ + Region: region, + InstanceID: locality.ExpandID(instanceID.(string)), + } + instance, err := mongodbAPI.GetInstance(getReq, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + _ = d.Set("name", instance.Name) + _ = d.Set("version", instance.Version) + _ = d.Set("node_number", instance.NodeNumber) + _ = d.Set("node_type", instance.NodeType) + _ = d.Set("project_id", instance.ProjectID) + _ = d.Set("tags", instance.Tags) + _ = d.Set("created_at", instance.CreatedAt.Format(time.RFC3339)) + _ = d.Set("region", instance.Region.String()) + + if instance.Volume != nil { + _ = d.Set("volume_type", instance.Volume.Type) + _ = d.Set("volume_size_in_gb", int(instance.Volume.Size/scw.GB)) + } + + publicNetworkEndpoint, publicNetworkExists := flattenPublicNetwork(instance.Endpoints) + if publicNetworkExists { + _ = d.Set("public_network", publicNetworkEndpoint) + } + + if len(instance.Settings) > 0 { + settingsMap := make(map[string]string) + for _, setting := range instance.Settings { + settingsMap[setting.Name] = setting.Value + } + _ = d.Set("settings", settingsMap) + } + + return nil +} diff --git a/internal/services/mongodb/data_source_instance_test.go b/internal/services/mongodb/data_source_instance_test.go new file mode 100644 index 0000000000..864fbeb62a --- /dev/null +++ b/internal/services/mongodb/data_source_instance_test.go @@ -0,0 +1,78 @@ +package mongodb_test + +import ( + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" +) + +func TestAccDataSourceMongoDBInstance_ByName(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: IsInstanceDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_mongodb_instance" "test" { + name = "test-mongodb-instance-by-name" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } + + data "scaleway_mongodb_instance" "test_by_name" { + name = scaleway_mongodb_instance.test.name + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_name", "name", "test-mongodb-instance-by-name"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_name", "version", "7.0.12"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_name", "node_type", "mgdb-play2-nano"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_name", "node_number", "1"), + ), + }, + }, + }) +} + +func TestAccDataSourceMongoDBInstance_ByID(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: IsInstanceDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_mongodb_instance" "test" { + name = "test-mongodb-instance-id" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "my_initial_user" + password = "thiZ_is_v&ry_s3cret" + } + + data "scaleway_mongodb_instance" "test_by_id" { + instance_id = scaleway_mongodb_instance.test.id + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_id", "name", "test-mongodb-instance-id"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_id", "version", "7.0.12"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_id", "node_type", "mgdb-play2-nano"), + resource.TestCheckResourceAttr("data.scaleway_mongodb_instance.test_by_id", "node_number", "1"), + ), + }, + }, + }) +} diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index 047654d7ff..805d7a19d1 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -217,6 +217,10 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter createReq.Tags = types.ExpandStrings(tags) } + epSpecs := make([]*mongodb.EndpointSpec, 0, 1) + spec := &mongodb.EndpointSpecPublicDetails{} + createReq.Endpoints = append(epSpecs, &mongodb.EndpointSpec{Public: spec}) + res, err = mongodbAPI.CreateInstance(createReq, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) diff --git a/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-id.cassette.yaml b/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-id.cassette.yaml new file mode 100644 index 0000000000..3a86302f8d --- /dev/null +++ b/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-id.cassette.yaml @@ -0,0 +1,7943 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 319 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance-id","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - bc0eb953-568c-4a62-8e54-041baed9a5ac + status: 200 OK + code: 200 + duration: 579.587002ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - 181bb599-5bbb-4740-917a-a7355b88749f + status: 200 OK + code: 200 + duration: 85.211343ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - 84f13d62-682b-465b-9679-9a3691181892 + status: 200 OK + code: 200 + duration: 183.292717ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - 0da60567-a0ac-4ca4-8873-b1eb0515e6b1 + status: 200 OK + code: 200 + duration: 66.282433ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - 4fc53cf7-7278-44a7-bb64-9bf35643787c + status: 200 OK + code: 200 + duration: 171.619946ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - e52a9eef-b9e6-43a5-91d3-c3d7d00a40e7 + status: 200 OK + code: 200 + duration: 71.287807ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - 55a7ef85-f81e-458c-a465-0b2a38d6ee8f + status: 200 OK + code: 200 + duration: 81.574241ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - 2093d79e-e5fc-4256-bfe8-7e757cb20544 + status: 200 OK + code: 200 + duration: 73.66663ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - 9b123c99-c425-469f-aab8-2fb88ca891f4 + status: 200 OK + code: 200 + duration: 73.228439ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - d54f6393-e684-43e7-b9c5-591e15918690 + status: 200 OK + code: 200 + duration: 68.753006ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - 9af761f1-dd44-424b-a797-780eda501990 + status: 200 OK + code: 200 + duration: 70.251547ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:53: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: + - a8bf73d5-4169-458c-9aad-742028491cf3 + status: 200 OK + code: 200 + duration: 423.218836ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54: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: + - 5682b13c-f04c-4931-b57e-7e53fdee90f0 + status: 200 OK + code: 200 + duration: 681.559439ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e6f4d7e-0469-47a8-83e0-426472282294 + status: 200 OK + code: 200 + duration: 64.438865ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54: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: + - 5568b3cf-c9f9-4467-9d3b-2fb75d8c2934 + status: 200 OK + code: 200 + duration: 75.567001ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa652a51-fce2-4980-8750-c21775834d03 + status: 200 OK + code: 200 + duration: 66.573895ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54: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: + - 9f8afe76-ea29-4018-97d3-6f11d793b09f + status: 200 OK + code: 200 + duration: 28.223052ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3c6156e-f9d9-4253-8139-7e0a66e0501c + status: 200 OK + code: 200 + duration: 28.132627ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54: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: + - ef617002-f845-48de-8caa-b167c2631e93 + status: 200 OK + code: 200 + duration: 81.73365ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c0ec028e-0cfd-4dbe-a612-4f31ae976eca + status: 200 OK + code: 200 + duration: 81.717602ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54: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: + - 2edb4650-6045-4298-ac7d-0cf9f2eb143d + status: 200 OK + code: 200 + duration: 69.807777ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d952e01-2caa-45a6-9717-f0d6243f1ae3 + status: 200 OK + code: 200 + duration: 64.689769ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54: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: + - cc484f12-4652-4c70-b3fc-2c5506202d98 + status: 200 OK + code: 200 + duration: 73.888241ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:54:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c4f8c93-eab9-4bac-a939-03c4d441a74d + status: 200 OK + code: 200 + duration: 70.048166ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55: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: + - 746382cd-8b1b-4335-937b-7da8aff4daf3 + status: 200 OK + code: 200 + duration: 90.523105ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a849ba87-db19-45c4-a895-f2da9ffd53dc + status: 200 OK + code: 200 + duration: 42.899893ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55: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: + - fb4ec93f-921f-409c-a5a1-5e3753810b46 + status: 200 OK + code: 200 + duration: 69.903517ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b1f2fba-5c8b-49ca-8257-a7afad87c14f + status: 200 OK + code: 200 + duration: 72.983425ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55: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: + - aa8eebb8-d1d2-465f-b2a8-384177d6157b + status: 200 OK + code: 200 + duration: 71.308767ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94cd61fd-be82-4c2c-8035-f19d67cb05d1 + status: 200 OK + code: 200 + duration: 72.888872ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55: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: + - cfab7e80-7e95-481d-b2bc-4266299f61e7 + status: 200 OK + code: 200 + duration: 66.811872ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a00125df-8f03-4950-97ee-36b24d259111 + status: 200 OK + code: 200 + duration: 66.378247ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55: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: + - 7034819b-80fd-43aa-8866-2b05fbffadff + status: 200 OK + code: 200 + duration: 67.081656ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - addebb9b-72f4-4fe3-afa8-85c12c36f283 + status: 200 OK + code: 200 + duration: 77.039244ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55: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: + - 76fe5e98-e700-4bad-a692-f614252194c7 + status: 200 OK + code: 200 + duration: 74.208382ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:55:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39f8210f-9d84-4b69-b0b4-d742355429c0 + status: 200 OK + code: 200 + duration: 624.63732ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56: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: + - 148f1cd5-c79d-4c04-84db-27e0b2c3046e + status: 200 OK + code: 200 + duration: 63.087403ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d939e31-aa01-4bfd-91a4-c2d913feff34 + status: 200 OK + code: 200 + duration: 76.416312ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56: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: + - 88d4cbde-985d-4a6e-ac7d-d0f054c6820c + status: 200 OK + code: 200 + duration: 80.82602ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b3181e3-62b6-4ce2-a39d-3f0685db97e0 + status: 200 OK + code: 200 + duration: 94.404302ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56: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: + - 08b871d8-c0f9-4fb2-9aca-7aa612ca2e8c + status: 200 OK + code: 200 + duration: 81.615152ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92343c5b-744a-4844-8d25-ae4fd6285edf + status: 200 OK + code: 200 + duration: 60.711766ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56: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: + - f9e80c42-e14f-4552-95fc-5864ab0409e7 + status: 200 OK + code: 200 + duration: 76.143278ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19215d92-3d66-428e-9ba1-c58412487517 + status: 200 OK + code: 200 + duration: 72.000084ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56: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: + - b744ac0c-4a74-4d98-8c22-26ed7bc417f9 + status: 200 OK + code: 200 + duration: 74.425494ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56: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: + - 200c2a1e-8d8c-472f-9041-68bf63cc125c + status: 200 OK + code: 200 + duration: 69.564739ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:56: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: + - 23fd3b3f-cb01-4912-bc9c-bec60da5eddb + status: 200 OK + code: 200 + duration: 94.215654ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - ea405dbd-2142-4578-ba66-e1d5952254ba + status: 200 OK + code: 200 + duration: 86.764493ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - f9b530e0-999e-4757-be92-1c248f7ea374 + status: 200 OK + code: 200 + duration: 67.085386ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - a098d370-92f9-47b9-942b-044f5dbc7952 + status: 200 OK + code: 200 + duration: 68.848517ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - c7586075-b13b-426d-b948-0cebf3017795 + status: 200 OK + code: 200 + duration: 72.913305ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - 549f8feb-b8eb-4ce2-a966-08e1d6a7fa3e + status: 200 OK + code: 200 + duration: 74.177095ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - df4f0bff-8393-42de-b8d1-727e8af3696a + status: 200 OK + code: 200 + duration: 69.678212ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f91c80b0-e8b9-4ba7-b449-e189d186556b + status: 200 OK + code: 200 + duration: 73.74837ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - d7764f83-cb82-40c1-bae2-eef6f6e2d629 + status: 200 OK + code: 200 + duration: 76.168449ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 059ee305-7627-4497-8f67-55f85bab7456 + status: 200 OK + code: 200 + duration: 68.065151ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - c18accbc-86a2-49bf-9b57-2efb431e884d + status: 200 OK + code: 200 + duration: 83.1702ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a2ba789a-4655-4d55-af29-57166b273f89 + status: 200 OK + code: 200 + duration: 54.137815ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:57: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: + - cce534ba-94e1-444c-a4e3-e0f83e695784 + status: 200 OK + code: 200 + duration: 71.082167ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58: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: + - b4eea838-5ab5-4ca7-a237-21bc29fd4721 + status: 200 OK + code: 200 + duration: 66.382703ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58: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: + - 1a3192d0-f045-47be-a181-05d068ac79b9 + status: 200 OK + code: 200 + duration: 74.72232ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58: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: + - 1e1e7c12-25bd-418c-a655-bf4d4772598e + status: 200 OK + code: 200 + duration: 55.145675ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58: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: + - 156bf3ea-05ca-4004-97e7-dd1149daa793 + status: 200 OK + code: 200 + duration: 75.258298ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58: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: + - b0d0ed16-39fc-4345-9458-4938891ccafa + status: 200 OK + code: 200 + duration: 72.39137ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83fd2942-7911-4f7f-9d11-95a1b3118bcc + status: 200 OK + code: 200 + duration: 75.478905ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58: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: + - 2b29e534-26dd-4331-afe6-04efe150f7a6 + status: 200 OK + code: 200 + duration: 85.777964ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c4769e1-6fb2-499d-9337-487c47c1cfff + status: 200 OK + code: 200 + duration: 51.335179ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58: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: + - 00dfb92c-0d8d-46df-b33c-5cee364f1ff3 + status: 200 OK + code: 200 + duration: 420.245865ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4be7bf6e-1388-436f-9b70-7ebd98ff5a2d + status: 200 OK + code: 200 + duration: 68.570805ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58: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: + - 992fb4c1-2a72-421d-8a7f-362d3cfa15c3 + status: 200 OK + code: 200 + duration: 75.646395ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:58:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d5b50b3-f284-4f2b-8420-cf1956bb1d57 + status: 200 OK + code: 200 + duration: 66.124083ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59: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: + - 6b1dd718-e299-4f5f-9a93-24a0738540ca + status: 200 OK + code: 200 + duration: 74.474072ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fdfba23e-f222-4496-b5f1-632b0a7da51c + status: 200 OK + code: 200 + duration: 56.091ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59: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: + - 68c2f223-c8b2-4e7b-a5d0-160ac742eac0 + status: 200 OK + code: 200 + duration: 70.062285ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59: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: + - 2539cfe2-2b21-431d-96db-4e6d6088db6f + status: 200 OK + code: 200 + duration: 84.346142ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59: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: + - 665e9e0a-0b51-4c6c-95b7-607584977ab6 + status: 200 OK + code: 200 + duration: 73.432247ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2019260c-051d-4e18-ac10-717e4e32c942 + status: 200 OK + code: 200 + duration: 78.073371ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59: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: + - 3206f88d-af2f-4032-9333-b053838b7379 + status: 200 OK + code: 200 + duration: 67.281007ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a35114dd-200d-4692-8760-48479789d0c8 + status: 200 OK + code: 200 + duration: 80.24468ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59: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: + - acf84629-8fef-4e45-9fc9-1c1f8904bf73 + status: 200 OK + code: 200 + duration: 72.660754ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 164232ec-2bcd-4e24-8a40-a8e73e3c16f3 + status: 200 OK + code: 200 + duration: 63.340986ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59: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: + - ee273c37-d5f0-43eb-bea7-e7c3e10a60d1 + status: 200 OK + code: 200 + duration: 58.572282ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 13:59: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: + - b344536c-dddb-4c3c-bd26-e1f239389cf2 + status: 200 OK + code: 200 + duration: 80.563162ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - 88324070-604f-4365-a7c2-cec3234ed94e + status: 200 OK + code: 200 + duration: 93.50394ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8a50ffb-1abc-4394-b7b7-91dffce95d4d + status: 200 OK + code: 200 + duration: 497.578064ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - 4a9d4f62-8212-452d-bf74-f1b36bc888d7 + status: 200 OK + code: 200 + duration: 65.486217ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - e146bec2-a906-42cd-9311-573c031479f9 + status: 200 OK + code: 200 + duration: 74.475073ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - 2c6f93db-2c42-4caf-87ab-b9c05b334dca + status: 200 OK + code: 200 + duration: 75.46808ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - deb82712-807b-454b-8ed5-94efeae5eda1 + status: 200 OK + code: 200 + duration: 73.054581ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - 8f469d37-546c-44fa-a367-29c835a169c1 + status: 200 OK + code: 200 + duration: 88.983884ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - 3dad74c0-02a2-4472-8a14-ea69ad4a8b0f + status: 200 OK + code: 200 + duration: 84.029812ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - 01211cc9-640c-4c48-9dec-5f6e90ab5767 + status: 200 OK + code: 200 + duration: 67.682257ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - 371786fa-ff8b-4979-9231-c87154d76e4b + status: 200 OK + code: 200 + duration: 79.20693ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - aee436d3-3df4-4375-8a5f-431e7ed171e5 + status: 200 OK + code: 200 + duration: 46.171631ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:00: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: + - 254a3d6c-b39e-4c62-ac56-e350eef50031 + status: 200 OK + code: 200 + duration: 78.367955ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - 07f4e4fa-70ac-47b7-9a80-fe1791bb4ac8 + status: 200 OK + code: 200 + duration: 81.08553ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - a36a2f71-4c1c-40f3-b71c-ff1238e347fc + status: 200 OK + code: 200 + duration: 67.305274ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - d24cd784-d160-437d-9086-a8ba96177a69 + status: 200 OK + code: 200 + duration: 54.990892ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - bc0bfe9f-16d3-4bea-8897-1070c4df20ad + status: 200 OK + code: 200 + duration: 77.316857ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - 64dd8660-21e9-46aa-960f-c1f5fa5e7e82 + status: 200 OK + code: 200 + duration: 66.397274ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - fee5dc68-74f4-403e-baad-6dfec4a36276 + status: 200 OK + code: 200 + duration: 77.3982ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - 29caa0af-beae-45aa-b903-e4b87f67ed2d + status: 200 OK + code: 200 + duration: 69.128203ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - 31fe2de3-c29a-4cdb-9fc8-42380553da19 + status: 200 OK + code: 200 + duration: 67.466066ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - 16053610-dbde-4195-8bd1-f2027e6f0f32 + status: 200 OK + code: 200 + duration: 431.381381ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - a9a2e640-0ee2-49f3-95e6-eb72fe845da9 + status: 200 OK + code: 200 + duration: 74.685773ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:01: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: + - f8fb16d0-e1f3-4bde-82ab-c588af242888 + status: 200 OK + code: 200 + duration: 60.032728ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - 8c8852d7-28c3-49c5-897e-26e421935ed6 + status: 200 OK + code: 200 + duration: 71.546043ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - 70ce7f79-9cd0-4c9d-aae6-5ae5662cd03a + status: 200 OK + code: 200 + duration: 70.073961ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - 60441110-4a4a-48b7-a901-4b8b6c3a135f + status: 200 OK + code: 200 + duration: 65.647634ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - ca7dd72c-5976-4b2b-a479-7784233f2074 + status: 200 OK + code: 200 + duration: 81.940631ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - a0cd1436-7979-418b-b3ff-e410fa0f7cf4 + status: 200 OK + code: 200 + duration: 76.651677ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - ddd1cb4b-a96c-4b13-b882-3dc16b4095b8 + status: 200 OK + code: 200 + duration: 65.358629ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - 55b35753-df8e-4e80-82f4-987a8002a0fe + status: 200 OK + code: 200 + duration: 74.8693ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c1f744f-2f1d-4555-884d-d7534140f026 + status: 200 OK + code: 200 + duration: 65.959835ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - fedaf104-7240-4133-b2e7-ed80270a5efb + status: 200 OK + code: 200 + duration: 65.721659ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - 0ab3ca20-91c7-4c36-bc32-d0e4189c7a3d + status: 200 OK + code: 200 + duration: 88.451189ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - d139bdc4-fa18-4922-997e-0389db90982a + status: 200 OK + code: 200 + duration: 64.214632ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 538 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "538" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:02: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: + - 9a814113-c7d8-4987-bfbb-0cefc6f1a7e0 + status: 200 OK + code: 200 + duration: 58.070272ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 75beef0e-9987-451b-b10d-9eee0552432c + status: 200 OK + code: 200 + duration: 69.77426ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 4d9af1e1-9255-433b-bfcb-269a89c06d4b + status: 200 OK + code: 200 + duration: 31.89127ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - a4d7f006-c1d5-4d76-982a-8a392551ff9b + status: 200 OK + code: 200 + duration: 236.694239ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 9dc44e41-368d-451e-a578-f7a90886f1bf + status: 200 OK + code: 200 + duration: 34.880473ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 19226087-e9c2-4c63-abbc-f59d8267b2ec + status: 200 OK + code: 200 + duration: 70.909768ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 1ad9e9c9-74cd-4564-bcca-df29eac127fe + status: 200 OK + code: 200 + duration: 25.203996ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - f4970ea3-c9eb-424c-bde8-22bb15e820ab + status: 200 OK + code: 200 + duration: 61.495698ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 531 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "531" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 2719e404-715f-40ea-9e10-5514069c8894 + status: 200 OK + code: 200 + duration: 466.150473ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 921f1504-383c-45e7-ac22-dc8983944775 + status: 200 OK + code: 200 + duration: 1.915179221s + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 4fdfe239-83d9-4bca-a35c-0c3afff362ea + status: 200 OK + code: 200 + duration: 53.433596ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 3a8d676b-5a73-4d24-9f78-5a627ebc7b65 + status: 200 OK + code: 200 + duration: 191.630677ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 4037e5aa-72e6-4e96-a7e4-bc16d0e0f5a7 + status: 200 OK + code: 200 + duration: 73.416394ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - a600927a-5f08-4b80-a535-bbaba7372e77 + status: 200 OK + code: 200 + duration: 66.192206ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b4101e8-f7d9-4b97-b8f7-2a2034f621ac + status: 200 OK + code: 200 + duration: 66.021579ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - bdab6db5-81e3-49c3-93f1-c421893789d8 + status: 200 OK + code: 200 + duration: 72.859611ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a770e9b0-ec27-4dfb-adff-ce8196902665 + status: 200 OK + code: 200 + duration: 75.028737ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - d41a6000-b704-4494-af72-b40b5c56d13e + status: 200 OK + code: 200 + duration: 76.677811ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 3c5323ab-bfca-4986-9c8e-55374349db92 + status: 200 OK + code: 200 + duration: 64.06472ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03: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: + - 46bc1884-17c6-471f-b98d-ff69d35da979 + status: 200 OK + code: 200 + duration: 685.183055ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:03:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c43c5b5e-660b-4f96-b777-0c8f0cca38fe + status: 200 OK + code: 200 + duration: 383.29761ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - 1730a246-860a-4b34-b0d0-e291868bb471 + status: 200 OK + code: 200 + duration: 71.876311ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0a5e39d-1661-4635-bb59-1be380e6f51f + status: 200 OK + code: 200 + duration: 68.879403ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - c5fca977-5c8c-41aa-b98e-6b76423ac03c + status: 200 OK + code: 200 + duration: 65.856812ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - c8671c16-5a64-4e1d-a983-3b87c68ce2e7 + status: 200 OK + code: 200 + duration: 68.391191ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - b5a16aad-a226-4b63-a93e-f77f4d6ebbc2 + status: 200 OK + code: 200 + duration: 26.198039ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2132e16-5605-42f2-9bbb-44d8465b5038 + status: 200 OK + code: 200 + duration: 64.364251ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - db45ae52-525f-4b3f-a399-ff4967252eda + status: 200 OK + code: 200 + duration: 67.260617ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d3462bd-a3ba-45a8-aabb-b62c792d58da + status: 200 OK + code: 200 + duration: 36.946863ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - 9fa4a74d-f4df-46cb-a9ce-5ac3bebc4d98 + status: 200 OK + code: 200 + duration: 68.007518ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - 020a9f34-0411-4f67-814a-e16ccf09cbca + status: 200 OK + code: 200 + duration: 40.153626ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - 548acdcd-dc46-4409-89be-15eb084f8758 + status: 200 OK + code: 200 + duration: 66.472067ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:04: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: + - ebdf10a1-079e-4667-a6f1-834751861a07 + status: 200 OK + code: 200 + duration: 72.012956ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - e1f790f3-0327-43c8-bd2e-5b26d97b69c9 + status: 200 OK + code: 200 + duration: 72.327458ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 050dbbd0-b5a8-4fa2-8112-6d3a7041ec57 + status: 200 OK + code: 200 + duration: 60.047508ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - 75157082-7bd6-43bb-afa3-f5330a9211e2 + status: 200 OK + code: 200 + duration: 62.715933ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - 16043d82-7760-495d-b282-a7b647aaf8d2 + status: 200 OK + code: 200 + duration: 76.853401ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - a027b9f1-0511-4e73-acfc-956fa918e115 + status: 200 OK + code: 200 + duration: 74.442615ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - 5b40325a-945d-4fba-a45a-e23bdc1dc0ae + status: 200 OK + code: 200 + duration: 79.366895ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - 052753e8-daad-4f68-8ed2-82a05d9fb0d7 + status: 200 OK + code: 200 + duration: 57.478431ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - 627820ab-a415-4912-92b7-5e757d36dcad + status: 200 OK + code: 200 + duration: 72.611103ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 534 + uncompressed: false + body: '{"created_at":"2024-10-15T13:53:04.565139Z","endpoints":[{"dns_records":["b1a634bb-db45-4b24-8399-5947ea1e0809.mgdb.fr-par.scw.cloud"],"id":"fe57fea8-37a3-4741-be4a-2bf8f9d0fc6d","ips":[],"port":27017,"public":{}}],"id":"b1a634bb-db45-4b24-8399-5947ea1e0809","name":"test-mongodb-instance-id","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "534" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - 0cf0b24c-5c1b-467b-add7-9204e2fa9359 + status: 200 OK + code: 200 + duration: 74.089853ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + 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":"b1a634bb-db45-4b24-8399-5947ea1e0809","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - a24b0e83-6701-4252-a0a2-70242ed47388 + status: 404 Not Found + code: 404 + duration: 33.201841ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + 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":"b1a634bb-db45-4b24-8399-5947ea1e0809","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - aabc72e8-1f3c-4c36-bf51-8cabada42ecc + status: 404 Not Found + code: 404 + duration: 26.691433ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b1a634bb-db45-4b24-8399-5947ea1e0809 + 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":"b1a634bb-db45-4b24-8399-5947ea1e0809","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:05: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: + - f3cf7073-0d08-4105-b270-5dd9cd319d1e + status: 404 Not Found + code: 404 + duration: 24.710216ms diff --git a/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-name.cassette.yaml b/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-name.cassette.yaml new file mode 100644 index 0000000000..718855995d --- /dev/null +++ b/internal/services/mongodb/testdata/data-source-mongo-db-instance-by-name.cassette.yaml @@ -0,0 +1,4611 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 324 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance-by-name","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76ed1f21-1a9e-4c8d-92fe-8e2ced50a2b1 + status: 200 OK + code: 200 + duration: 663.576453ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3b49730-ace0-4268-a4f2-93a65f19224a + status: 200 OK + code: 200 + duration: 107.153686ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21fd4654-9699-4b62-961e-162f2ed68090 + status: 200 OK + code: 200 + duration: 65.576126ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4cfe556d-d769-4dca-b596-021244b7721c + status: 200 OK + code: 200 + duration: 97.148461ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09cb3fd3-de38-427f-bbf4-976ebd92c001 + status: 200 OK + code: 200 + duration: 175.553438ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 71b16413-0146-4fae-bbe1-f491439d7fe3 + status: 200 OK + code: 200 + duration: 82.013762ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ee2e445-ff0d-4f7a-97fe-53600c9a0c03 + status: 200 OK + code: 200 + duration: 71.845638ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3e5f318f-0cd3-443a-a3ee-369dac99dea0 + status: 200 OK + code: 200 + duration: 65.042186ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 44f8c196-0999-4ad3-81c2-1aa7a9db51d2 + status: 200 OK + code: 200 + duration: 74.08052ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ca487d9-5781-415e-99b0-69d5374deac9 + status: 200 OK + code: 200 + duration: 108.860203ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 719abb49-6874-47e3-8744-dadb9a0ff18d + status: 200 OK + code: 200 + duration: 84.531638ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:38:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b88c616-60f7-4190-a0f6-7312632019df + status: 200 OK + code: 200 + duration: 80.843678ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c042e47d-4f86-4b6d-97e0-7696ab61e48b + status: 200 OK + code: 200 + duration: 75.059153ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ef9ad23-7dac-4583-928e-1bcd178f17eb + status: 200 OK + code: 200 + duration: 82.803105ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0781ada4-1dba-402d-9fa6-f9f8ec986434 + status: 200 OK + code: 200 + duration: 86.732517ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e3aca14-fcd7-426b-954e-d22ec71d1cc4 + status: 200 OK + code: 200 + duration: 284.102953ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 62ba080b-e412-4500-8b56-bdec47863581 + status: 200 OK + code: 200 + duration: 99.250141ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6d6235c-2d7d-4c06-8b6b-5929e8be43a1 + status: 200 OK + code: 200 + duration: 73.12283ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73b57da9-df71-42a0-a8cc-13461716e10f + status: 200 OK + code: 200 + duration: 71.368767ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4269119-e0d7-4e41-980b-b2277cd6e61e + status: 200 OK + code: 200 + duration: 93.952785ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91224d4c-47de-4520-ac77-b5e7a1be06aa + status: 200 OK + code: 200 + duration: 71.860458ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b9f23e9c-8ae7-4428-b51b-dfe1d2ef6adc + status: 200 OK + code: 200 + duration: 73.241076ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ff3f4e8-b32e-4d6a-b869-618345d5ed65 + status: 200 OK + code: 200 + duration: 87.596833ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:39:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2b06118-7907-40b3-93de-afdefe70e03b + status: 200 OK + code: 200 + duration: 74.957917ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 968dcdc2-605c-44bf-adf8-954d323301cc + status: 200 OK + code: 200 + duration: 81.56319ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd2345e3-2ae4-4ac5-9bb8-e006969fdf00 + status: 200 OK + code: 200 + duration: 98.0221ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e841c2f5-011c-4721-9bc5-da26136d4dc7 + status: 200 OK + code: 200 + duration: 75.772662ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0cbf7872-7788-4ca8-ad11-932a2190c4df + status: 200 OK + code: 200 + duration: 73.316399ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 71d57d5e-44ba-4dc9-869f-cebc469b3d22 + status: 200 OK + code: 200 + duration: 99.010706ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91beb594-de82-40be-bd95-b1698f7f1b1c + status: 200 OK + code: 200 + duration: 81.504178ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0da7ba7-b84e-4256-9cb4-78231829564c + status: 200 OK + code: 200 + duration: 77.522719ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c0b2b2bc-3751-422c-a98a-85751bbb5b27 + status: 200 OK + code: 200 + duration: 81.209105ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea8bcbca-c7a8-45ac-a771-a13fa3acdb35 + status: 200 OK + code: 200 + duration: 88.570402ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 32bd0fe1-b376-4281-9303-001f2ba5450f + status: 200 OK + code: 200 + duration: 77.594781ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a925ba7-8016-450e-8036-93c0b3bf06a5 + status: 200 OK + code: 200 + duration: 81.948283ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:40:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f0ca257-b679-4b5d-9342-e10d23af959d + status: 200 OK + code: 200 + duration: 73.064623ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2515dabb-3773-47d0-98cf-dc69220935d9 + status: 200 OK + code: 200 + duration: 82.30678ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ab17f02-c09f-4023-9c27-38232c7a33e9 + status: 200 OK + code: 200 + duration: 72.649954ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d47805b2-8f7e-42a3-a350-5e2b94e49137 + status: 200 OK + code: 200 + duration: 94.357432ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2fc636b7-74c2-4f64-87d6-83843f610ff4 + status: 200 OK + code: 200 + duration: 193.452556ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 382244ae-12f6-4ca9-ad17-5d1c651cc9c9 + status: 200 OK + code: 200 + duration: 75.700158ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 182ac450-fbde-45b5-aabe-553b7639e648 + status: 200 OK + code: 200 + duration: 85.637461ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3b1450a-a44d-4f97-b43f-d275d2d9f0ed + status: 200 OK + code: 200 + duration: 69.748719ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d39fc94-1a85-4b5a-a0bd-f744eb1bdf37 + status: 200 OK + code: 200 + duration: 67.233551ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de80a4e5-aafe-4e9b-85cb-ea1a51e10df1 + status: 200 OK + code: 200 + duration: 79.850255ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - abb4be29-ce45-4c93-bcf8-7a37fdf032e9 + status: 200 OK + code: 200 + duration: 86.866466ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 598a2331-d10b-471d-a659-28ed42e298b1 + status: 200 OK + code: 200 + duration: 87.086092ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c36e7a8-ce7f-427b-9c6f-9ddf676140e1 + status: 200 OK + code: 200 + duration: 61.250047ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19cc9374-bbd4-46c0-8d9c-56605a16d7ad + status: 200 OK + code: 200 + duration: 56.131512ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7ee097b-489b-4b2d-9361-3692596cae1a + status: 200 OK + code: 200 + duration: 71.866233ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f87b5a50-aa15-442d-870a-575e61d659ea + status: 200 OK + code: 200 + duration: 78.229565ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3197012a-bcea-4b91-9866-08f375ad89f3 + status: 200 OK + code: 200 + duration: 75.060829ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 355ff051-8cd8-42bf-af10-9cc4b36fec22 + status: 200 OK + code: 200 + duration: 72.714987ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f6e44337-0dd3-447c-b601-9bc2aedb5cd9 + status: 200 OK + code: 200 + duration: 68.997746ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ddb22c93-2d56-41d5-86cf-5cc44b79d740 + status: 200 OK + code: 200 + duration: 75.609247ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b5deeef-d80f-4379-a9af-3168f3372fde + status: 200 OK + code: 200 + duration: 85.945447ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8692352a-445e-4103-b09e-267f0c4377b9 + status: 200 OK + code: 200 + duration: 72.23162ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5974060-4b89-4408-877b-9fc3c7445358 + status: 200 OK + code: 200 + duration: 75.552632ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a6e741fe-af68-48ac-b14d-3e9741a31489 + status: 200 OK + code: 200 + duration: 85.361613ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b778bcb-efbe-42cd-b361-9f48a40b5194 + status: 200 OK + code: 200 + duration: 72.836659ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97ac0dba-91fc-44ce-b994-d72d1acd6425 + status: 200 OK + code: 200 + duration: 75.227237ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5d420c0-7d92-41d6-916e-016425f36c3c + status: 200 OK + code: 200 + duration: 87.30592ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47dba212-25ff-44ce-91cc-54ad25bbdb71 + status: 200 OK + code: 200 + duration: 74.891614ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e912833a-f163-4efa-af7f-f06349b6b3e7 + status: 200 OK + code: 200 + duration: 81.329468ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db400aff-d727-45c1-bbc3-6f035d8a144f + status: 200 OK + code: 200 + duration: 82.424599ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e3fb7c6-12e8-45e3-9897-a55a8e918a2e + status: 200 OK + code: 200 + duration: 80.710698ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d71aa406-d46b-4495-b379-3207f24f902a + status: 200 OK + code: 200 + duration: 62.689909ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c02c3a0-b056-4d6f-8eb0-7f9ae5948861 + status: 200 OK + code: 200 + duration: 69.470253ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b08a0e51-ba08-4762-af48-ddd8fbb8d312 + status: 200 OK + code: 200 + duration: 73.428193ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cfd60abb-44fb-45ff-9cee-0feddb61cfbb + status: 200 OK + code: 200 + duration: 187.63121ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46e6002b-8ae4-4b6f-ac63-15b67acae2ee + status: 200 OK + code: 200 + duration: 73.982149ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 22bd1219-272b-4cb1-9115-3a1db2ea3914 + status: 200 OK + code: 200 + duration: 64.909751ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d9a2972-2f7d-4ca6-814f-f10c941b9c35 + status: 200 OK + code: 200 + duration: 27.082366ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances?name=test-mongodb-instance-by-name&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 569 + uncompressed: false + body: '{"instances":[{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c5bdfe6-1ab8-4eb7-ae19-16c0d2e61ed8 + status: 200 OK + code: 200 + duration: 88.646826ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8602f828-3e0e-4a43-80f5-ce3f241e880c + status: 200 OK + code: 200 + duration: 85.506373ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances?name=test-mongodb-instance-by-name&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 569 + uncompressed: false + body: '{"instances":[{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3ca3706-a2e2-4277-9221-dcc318f2c538 + status: 200 OK + code: 200 + duration: 37.489038ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08d0312a-a15e-4dae-bd23-3872595c60a1 + status: 200 OK + code: 200 + duration: 69.616992ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb2f69e4-186c-401e-b3bf-8eef1bd3cb11 + status: 200 OK + code: 200 + duration: 68.892716ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances?name=test-mongodb-instance-by-name&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 569 + uncompressed: false + body: '{"instances":[{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b32a634-66c9-488f-a653-49e1f64a67a4 + status: 200 OK + code: 200 + duration: 83.813505ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b61ed6c-c31d-4989-8de0-60d38f7e1387 + status: 200 OK + code: 200 + duration: 27.393901ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances?name=test-mongodb-instance-by-name&order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 569 + uncompressed: false + body: '{"instances":[{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "569" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f9d44d2a-0ff3-4c8b-ad6e-454af0a902c6 + status: 200 OK + code: 200 + duration: 33.804132ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 966eaa9b-c348-4ce8-bcbd-8d388dd67cb2 + status: 200 OK + code: 200 + duration: 34.558974ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cf430d35-7abe-4a8a-bd9d-eb1b441217d9 + status: 200 OK + code: 200 + duration: 60.305429ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d07126fb-8511-4ae0-8c58-779523fbda60 + status: 200 OK + code: 200 + duration: 140.969688ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa291a43-e3b8-437b-897a-a35bc4c57cd3 + status: 200 OK + code: 200 + duration: 65.091077ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5224f662-6a7c-4d73-9920-6f8276fe1f6a + status: 200 OK + code: 200 + duration: 77.701418ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1440a458-4928-4309-a1a3-f32041fece76 + status: 200 OK + code: 200 + duration: 66.866494ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12e616a8-0bc1-4c34-b296-38b899babfe7 + status: 200 OK + code: 200 + duration: 73.206475ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d5314e4-1122-496a-be21-68a5cd9532a2 + status: 200 OK + code: 200 + duration: 76.489862ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7aaf8255-5b0d-4328-a491-ec51016c0c8e + status: 200 OK + code: 200 + duration: 67.893586ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 539 + uncompressed: false + body: '{"created_at":"2024-10-15T14:38:03.594276Z","endpoints":[{"dns_records":["f5af4cfc-7e8d-44a1-b536-83ce1d27137b.mgdb.fr-par.scw.cloud"],"id":"db37ddfe-b01b-426c-871f-71ed5a01f851","ips":[],"port":27017,"public":{}}],"id":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","name":"test-mongodb-instance-by-name","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "539" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 187e8d1f-bf88-483b-bcc2-a9a0e0b9d94a + status: 200 OK + code: 200 + duration: 73.086774ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + 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":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12165639-0220-414e-b15f-fd2e612d7ee3 + status: 404 Not Found + code: 404 + duration: 23.565756ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + 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":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9046faf6-9d15-4ec6-a869-a8e810ae4f97 + status: 404 Not Found + code: 404 + duration: 24.011315ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f5af4cfc-7e8d-44a1-b536-83ce1d27137b + 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":"f5af4cfc-7e8d-44a1-b536-83ce1d27137b","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 15 Oct 2024 14:44:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39d59bdf-3a0c-4946-ad44-a0a1f2ec39ef + status: 404 Not Found + code: 404 + duration: 29.009227ms From 6e79c7ae2d93744c0df523f48814105090b8fd09 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 11:22:05 +0200 Subject: [PATCH 09/26] feat(mongodb): add cassette with sdk --- internal/services/mongodb/instance.go | 2 +- internal/services/mongodb/snapshot_test.go | 2 +- ...go-db-instance-from-snapshot.cassette.yaml | 3361 ++++++--- .../mongo-db-snapshot-basic.cassette.yaml | 6349 +++-------------- .../mongo-db-snapshot-update.cassette.yaml | 2410 ++++--- 5 files changed, 4494 insertions(+), 7630 deletions(-) diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index 805d7a19d1..6683f953be 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -333,7 +333,7 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter if d.HasChange("tags") { if tags := types.ExpandUpdatedStringsPtr(d.Get("tags")); tags != nil { - req.Tags = *tags + req.Tags = tags } } diff --git a/internal/services/mongodb/snapshot_test.go b/internal/services/mongodb/snapshot_test.go index 4482be7f14..51468fcb40 100644 --- a/internal/services/mongodb/snapshot_test.go +++ b/internal/services/mongodb/snapshot_test.go @@ -27,7 +27,7 @@ func TestAccMongoDBSnapshot_Basic(t *testing.T) { resource "scaleway_mongodb_instance" "main" { name = "test-mongodb-instance" version = "7.0.12" - node_type = "MGDB-PRO2-XXS" + node_type = "MGDB-PLAY2-NANO" node_number = 1 user_name = "my_initial_user" password = "thiZ_is_v&ry_s3cret" diff --git a/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml index f73bd638d4..d23a229e75 100644 --- a/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -38,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:51:26 GMT + - Thu, 17 Oct 2024 09:02:05 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5798a2a8-f065-4d96-be49-f54ab7b2da52 + - 09498e34-1843-4737-bc4b-87472297ddb4 status: 200 OK code: 200 - duration: 822.660114ms + duration: 568.486047ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -87,7 +87,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:51:26 GMT + - Thu, 17 Oct 2024 09:02:05 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f74db690-0cf6-43fc-87d5-f117a5487b42 + - b32477ee-99a1-4e91-9370-22ca2ace17cc status: 200 OK code: 200 - duration: 98.950018ms + duration: 89.283092ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -136,7 +136,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:51:31 GMT + - Thu, 17 Oct 2024 09:02:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1c65d4d-5d91-41ba-a0a9-ee1e0150299a + - 566a33d4-e680-40be-881d-8837f259a00b status: 200 OK code: 200 - duration: 136.730348ms + duration: 153.769148ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -185,7 +185,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:51:36 GMT + - Thu, 17 Oct 2024 09:02:16 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47c739a6-6d8b-4fa6-aa5d-7a5f0a23390e + - c578db15-914e-4821-993c-f6e076f81d37 status: 200 OK code: 200 - duration: 98.420695ms + duration: 83.932197ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -234,7 +234,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:51:41 GMT + - Thu, 17 Oct 2024 09:02:21 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0052af4-5085-4795-b9dc-e45ebaaa2dc6 + - 2732d9bc-05d0-4a77-96ea-8a135f595392 status: 200 OK code: 200 - duration: 67.926366ms + duration: 83.465387ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -274,7 +274,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -283,7 +283,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:51:46 GMT + - Thu, 17 Oct 2024 09:02:26 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84634ab3-f369-491a-826b-5e9f7543a5ef + - af91c384-b884-4eaa-b4fb-8ed3e2e03073 status: 200 OK code: 200 - duration: 96.506007ms + duration: 66.852378ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -332,7 +332,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:51:51 GMT + - Thu, 17 Oct 2024 09:02:31 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b078d761-c501-4f94-940b-0a65c08f82ea + - 2e3b7a75-2c71-4e74-b413-cb9ee1386bdd status: 200 OK code: 200 - duration: 82.304746ms + duration: 80.821288ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -381,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:51:56 GMT + - Thu, 17 Oct 2024 09:02:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b8097e8-d27c-402d-94f2-ac5876e2450d + - f279f1b3-e752-4ed3-ac01-6636328868e7 status: 200 OK code: 200 - duration: 98.265988ms + duration: 75.828287ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -430,7 +430,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:02 GMT + - Thu, 17 Oct 2024 09:02:41 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aab4257c-67c4-4ded-8b0f-1e2b1d1e6044 + - 6be0d355-96ba-4c25-9d35-fa0bf8968611 status: 200 OK code: 200 - duration: 471.627564ms + duration: 98.10688ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -479,7 +479,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:08 GMT + - Thu, 17 Oct 2024 09:02:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d79ebe4-4aa2-4c81-8578-b0554a1628f4 + - ab22e9f8-a4fd-47fe-b192-21ee4e19373f status: 200 OK code: 200 - duration: 625.512917ms + duration: 63.185911ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -528,7 +528,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:13 GMT + - Thu, 17 Oct 2024 09:02:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba73def6-55bf-4025-a52e-c42dc5942bbd + - bfbd5dc6-e3d9-4e51-930b-395953b37070 status: 200 OK code: 200 - duration: 65.774475ms + duration: 75.672197ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -568,7 +568,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -577,7 +577,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:18 GMT + - Thu, 17 Oct 2024 09:02:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4b97d44-02a6-4e4c-b12b-5e61dd0f9b1d + - dd5e3555-42ab-4078-a55c-06e96cbba3f4 status: 200 OK code: 200 - duration: 81.472916ms + duration: 70.463859ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -617,7 +617,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -626,7 +626,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:23 GMT + - Thu, 17 Oct 2024 09:03:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55caa714-754c-4f9d-b9ca-9bfc2c1e5201 + - 83394d72-0b6c-49b2-8ef2-e0c242670bd2 status: 200 OK code: 200 - duration: 79.953314ms + duration: 84.82873ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -666,7 +666,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -675,7 +675,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:28 GMT + - Thu, 17 Oct 2024 09:03:06 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63c295b8-79b2-4ecb-8024-904b09ea195a + - a6d43b9a-051a-4422-b79b-57a474c7f236 status: 200 OK code: 200 - duration: 117.823919ms + duration: 73.283222ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -724,7 +724,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:33 GMT + - Thu, 17 Oct 2024 09:03:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd3694f4-be67-4ca5-9a85-b70e604d66ac + - b511996d-3983-4892-9fce-77b412a8e731 status: 200 OK code: 200 - duration: 75.969091ms + duration: 58.86081ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -773,7 +773,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:38 GMT + - Thu, 17 Oct 2024 09:03:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68a861a0-0732-490e-8e05-9aa292b3bf5c + - 20b0e262-d434-46bd-95ce-07df455b78db status: 200 OK code: 200 - duration: 70.853302ms + duration: 57.895752ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -813,7 +813,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -822,7 +822,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:43 GMT + - Thu, 17 Oct 2024 09:03:22 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 068b4542-589b-4d1b-b9b3-e8c7ffd141d3 + - a3795f8a-0326-4ce6-9df8-9621692072d2 status: 200 OK code: 200 - duration: 97.960246ms + duration: 87.885746ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -862,7 +862,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -871,7 +871,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:48 GMT + - Thu, 17 Oct 2024 09:03:27 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af89505a-2fe0-4dfb-bc76-e9d52582ba25 + - ec0f3a04-119e-48db-9468-e49dfe0fecdc status: 200 OK code: 200 - duration: 98.63716ms + duration: 73.960133ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -911,7 +911,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -920,7 +920,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:53 GMT + - Thu, 17 Oct 2024 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c6f09da-ef86-4a9a-a2bf-4b138cc29fee + - e12521d8-bfee-4933-b4e1-e9703f67f450 status: 200 OK code: 200 - duration: 74.903732ms + duration: 73.90646ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -960,7 +960,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -969,7 +969,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:52:58 GMT + - Thu, 17 Oct 2024 09:03:37 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c0f9f0e-1b3c-4274-8178-6413d997ed20 + - 04b0b86b-053d-4a40-9294-aaacd20f19b2 status: 200 OK code: 200 - duration: 81.105682ms + duration: 80.303822ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1009,7 +1009,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1018,7 +1018,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:03 GMT + - Thu, 17 Oct 2024 09:03:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0061207-94fc-4ce4-b1c8-27969ff1ce24 + - 3be6c222-363a-4ca0-8369-e68640b08499 status: 200 OK code: 200 - duration: 65.957983ms + duration: 81.121503ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1067,7 +1067,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:09 GMT + - Thu, 17 Oct 2024 09:03:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09b05391-25f2-42da-9c55-c93c4a48ec00 + - 625eebee-b2e8-423c-a61c-7f0161ad5c1a status: 200 OK code: 200 - duration: 73.333118ms + duration: 70.372743ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1107,7 +1107,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1116,7 +1116,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:14 GMT + - Thu, 17 Oct 2024 09:03:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fd11b03-e4f0-4406-b5bb-305fb217a661 + - 8ce529e5-0a14-4599-946e-436255bab8c3 status: 200 OK code: 200 - duration: 98.162671ms + duration: 69.401055ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1156,7 +1156,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1165,7 +1165,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:19 GMT + - Thu, 17 Oct 2024 09:03:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2160504f-72c5-4784-821e-716d07d6f18d + - 6614de84-5c24-4ede-a2a9-d53cd2bef374 status: 200 OK code: 200 - duration: 56.986726ms + duration: 128.137074ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1205,7 +1205,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1214,7 +1214,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:24 GMT + - Thu, 17 Oct 2024 09:04:02 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9531b949-75c5-4178-bec2-59ada49ef980 + - f77ba893-34e2-499f-8f35-6ef11758f2e4 status: 200 OK code: 200 - duration: 88.970605ms + duration: 66.540933ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1254,7 +1254,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1263,7 +1263,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:29 GMT + - Thu, 17 Oct 2024 09:04:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f68e0849-115a-4979-b649-4e4eee8192bb + - 4ac74f75-b6b9-4cd4-a6f1-2f971a98e71f status: 200 OK code: 200 - duration: 76.141801ms + duration: 63.406443ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1303,7 +1303,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1312,7 +1312,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:34 GMT + - Thu, 17 Oct 2024 09:04:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d47c1268-fba2-4eb4-9371-b86d6d96954b + - dd9a54f5-03a4-4377-a852-aa90d590805d status: 200 OK code: 200 - duration: 70.768533ms + duration: 73.18226ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1352,7 +1352,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1361,7 +1361,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:39 GMT + - Thu, 17 Oct 2024 09:04:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ea3a1e2-9f02-4a44-92c0-7968c7937e12 + - 7de163f2-dff5-43a4-9188-6ce5ceb97526 status: 200 OK code: 200 - duration: 71.65151ms + duration: 62.719917ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1401,7 +1401,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1410,7 +1410,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:44 GMT + - Thu, 17 Oct 2024 09:04:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ed2a070-8cdf-4815-ac37-61b3b1855d24 + - 4d100034-1af5-42a1-8a9b-aadf7d7a9afd status: 200 OK code: 200 - duration: 77.027284ms + duration: 114.803625ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1450,7 +1450,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1459,7 +1459,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:49 GMT + - Thu, 17 Oct 2024 09:04:28 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d0a0623-0e22-454d-9dad-4bca27f4fa09 + - 82b7485e-4df9-4201-bdbc-453788d57a19 status: 200 OK code: 200 - duration: 96.076782ms + duration: 77.601766ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1499,7 +1499,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1508,7 +1508,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:54 GMT + - Thu, 17 Oct 2024 09:04:33 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daabdc42-083d-45ad-8412-4ea9a4c0398c + - 52b278c6-0931-4bb8-87e7-a763405dd283 status: 200 OK code: 200 - duration: 72.795281ms + duration: 58.948854ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1557,7 +1557,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:53:59 GMT + - Thu, 17 Oct 2024 09:04:38 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce91ef97-daf4-4240-9a9a-fe2299317ac6 + - eb119418-6a14-4213-92b9-c8adcb96a2c5 status: 200 OK code: 200 - duration: 74.732886ms + duration: 83.132872ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1597,7 +1597,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1606,7 +1606,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:04 GMT + - Thu, 17 Oct 2024 09:04:43 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f41dc4a3-641a-46db-9b89-20d869e049a6 + - 9aeaee30-715e-4618-829c-9161193be028 status: 200 OK code: 200 - duration: 71.144398ms + duration: 150.790376ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1646,7 +1646,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1655,7 +1655,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:09 GMT + - Thu, 17 Oct 2024 09:04:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e47fad80-c2be-48e8-ac2d-4cfbff64c6ff + - 7df2f803-8658-4405-85db-15f0042b4461 status: 200 OK code: 200 - duration: 78.555719ms + duration: 222.949235ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1695,7 +1695,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1704,7 +1704,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:15 GMT + - Thu, 17 Oct 2024 09:04:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77230e0b-befb-4acc-968e-33884c462365 + - ebe8bb80-03a9-4569-98ed-9f86e4c6d235 status: 200 OK code: 200 - duration: 79.144512ms + duration: 64.333216ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1744,7 +1744,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1753,7 +1753,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:20 GMT + - Thu, 17 Oct 2024 09:04:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2f5bec5-a640-42ec-83e5-5947e851ddb1 + - ebcc3c22-d323-4be1-8054-75c91b02ca84 status: 200 OK code: 200 - duration: 66.861547ms + duration: 102.54995ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1793,7 +1793,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1802,7 +1802,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:25 GMT + - Thu, 17 Oct 2024 09:05:04 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05ba798b-c263-40d6-85b5-9eb128b04e18 + - 7af75962-8433-4158-a3b9-4ee8d1630739 status: 200 OK code: 200 - duration: 78.842874ms + duration: 80.874472ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1842,7 +1842,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1851,7 +1851,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:30 GMT + - Thu, 17 Oct 2024 09:05:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5481dd0a-74f6-473f-a511-7471faa298da + - 7889be33-8a4a-49cb-a36e-cde090f3aa9b status: 200 OK code: 200 - duration: 78.571751ms + duration: 74.851023ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1891,7 +1891,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1900,7 +1900,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:35 GMT + - Thu, 17 Oct 2024 09:05:14 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0db944a-389b-4945-bc8a-66d20215e641 + - a93577f3-f983-4c11-adf2-ee62bc9ceded status: 200 OK code: 200 - duration: 62.486684ms + duration: 75.462433ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1940,7 +1940,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1949,7 +1949,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:40 GMT + - Thu, 17 Oct 2024 09:05:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1959,10 +1959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7df92a51-ef3c-427a-a49e-2d7a9ea7c4da + - 86c2813b-637d-4edf-a2b0-b2ad67db2142 status: 200 OK code: 200 - duration: 78.112977ms + duration: 58.628949ms - id: 40 request: proto: HTTP/1.1 @@ -1979,7 +1979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -1989,7 +1989,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1998,7 +1998,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:45 GMT + - Thu, 17 Oct 2024 09:05:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2008,10 +2008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16c14a17-ba3f-47d3-83f7-ca728a7b6004 + - 45759b9c-7823-4ba9-a9a8-9976d6623624 status: 200 OK code: 200 - duration: 59.949615ms + duration: 68.268147ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2038,7 +2038,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2047,7 +2047,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:50 GMT + - Thu, 17 Oct 2024 09:05:29 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2057,10 +2057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b8e6608-0f66-4522-9d78-1665f6c2daa7 + - d640407d-0555-4186-a921-6bbe9f0b7b87 status: 200 OK code: 200 - duration: 65.843023ms + duration: 67.852892ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2087,7 +2087,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2096,7 +2096,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:54:55 GMT + - Thu, 17 Oct 2024 09:05:34 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2106,10 +2106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a39514a-675d-455f-9f1b-58b3f0dceb17 + - 5fdf0c75-0562-4945-9f84-a1b36888b56b status: 200 OK code: 200 - duration: 82.867892ms + duration: 66.765709ms - id: 43 request: proto: HTTP/1.1 @@ -2126,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2136,7 +2136,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2145,7 +2145,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:00 GMT + - Thu, 17 Oct 2024 09:05:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2155,10 +2155,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed833c26-92be-448b-9c61-7518f9204de4 + - 0aee0cd0-5ab0-42af-898a-9e597dae2a37 status: 200 OK code: 200 - duration: 84.994868ms + duration: 85.155438ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2185,7 +2185,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2194,7 +2194,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:05 GMT + - Thu, 17 Oct 2024 09:05:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2204,10 +2204,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe356e40-74ac-4704-bf0e-7f5efd16cf54 + - 300f779f-be45-4b99-84ca-5a725f05450f status: 200 OK code: 200 - duration: 79.717617ms + duration: 75.777566ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2234,7 +2234,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2243,7 +2243,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:10 GMT + - Thu, 17 Oct 2024 09:05:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2253,10 +2253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 348800cb-3729-48c3-b71e-332f7fab43a7 + - 643930c4-783b-48bf-88fd-f51d1c31a5fb status: 200 OK code: 200 - duration: 74.033434ms + duration: 137.011196ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2283,7 +2283,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2292,7 +2292,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:15 GMT + - Thu, 17 Oct 2024 09:05:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2302,10 +2302,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce4f97bb-8636-44f1-a589-d713df641bb9 + - c7b095f2-f94b-4bec-b065-31f1fe310f80 status: 200 OK code: 200 - duration: 71.183898ms + duration: 80.865032ms - id: 47 request: proto: HTTP/1.1 @@ -2322,7 +2322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2332,7 +2332,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2341,7 +2341,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:21 GMT + - Thu, 17 Oct 2024 09:05:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2351,10 +2351,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c4a5b6d-4da2-4ffa-85f3-cc370edca755 + - e99ca2f1-0dab-4d25-85fd-20dd0d8e9d49 status: 200 OK code: 200 - duration: 70.138031ms + duration: 63.090323ms - id: 48 request: proto: HTTP/1.1 @@ -2371,7 +2371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2381,7 +2381,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2390,7 +2390,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:26 GMT + - Thu, 17 Oct 2024 09:06:04 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2400,10 +2400,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae2fab65-ce85-428a-a943-9a4c273bad86 + - 058e6561-88a9-434a-aff8-1a837148384c status: 200 OK code: 200 - duration: 76.154408ms + duration: 59.732317ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2430,7 +2430,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2439,7 +2439,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:31 GMT + - Thu, 17 Oct 2024 09:06:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2449,10 +2449,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d34f5bf0-0466-4801-a942-a86edc9271fa + - e85a3d4e-266e-40aa-8f92-07f022ea8be2 status: 200 OK code: 200 - duration: 88.301296ms + duration: 83.974511ms - id: 50 request: proto: HTTP/1.1 @@ -2469,7 +2469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2479,7 +2479,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2488,7 +2488,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:36 GMT + - Thu, 17 Oct 2024 09:06:15 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2498,10 +2498,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2dc0e1d-3ccb-431b-a966-c565a9300e99 + - b62d2ad6-dd45-44a2-b9a3-d013d3306bd6 status: 200 OK code: 200 - duration: 429.100734ms + duration: 87.600531ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2528,7 +2528,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2537,7 +2537,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:41 GMT + - Thu, 17 Oct 2024 09:06:20 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2547,10 +2547,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbab6a73-d557-4456-a520-da5aeab3cee4 + - 045efbe7-102c-41e5-be5d-0564ac0d19cc status: 200 OK code: 200 - duration: 81.224853ms + duration: 77.091202ms - id: 52 request: proto: HTTP/1.1 @@ -2567,7 +2567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2577,7 +2577,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2586,7 +2586,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:46 GMT + - Thu, 17 Oct 2024 09:06:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2596,10 +2596,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11a60c60-7956-433a-a94e-8565d594d996 + - 0dd2776d-5fec-4b7b-be37-a8abf75936a4 status: 200 OK code: 200 - duration: 79.144343ms + duration: 78.848341ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2626,7 +2626,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2635,7 +2635,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:52 GMT + - Thu, 17 Oct 2024 09:06:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2645,10 +2645,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f976eb2-c930-44ad-b6df-96da94227318 + - 5ccfbf7a-da47-4313-bba9-eb3abe89a0d8 status: 200 OK code: 200 - duration: 433.806189ms + duration: 72.15483ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2675,7 +2675,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2684,7 +2684,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:55:57 GMT + - Thu, 17 Oct 2024 09:06:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2694,10 +2694,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14f40557-d45d-49f9-b12a-ac3f02a52194 + - 0597fdb5-1928-48d5-90dd-ddf9dac23627 status: 200 OK code: 200 - duration: 73.481438ms + duration: 621.910782ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2724,7 +2724,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2733,7 +2733,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:02 GMT + - Thu, 17 Oct 2024 09:06:41 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2743,10 +2743,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ff1b993-a5fb-4634-b1f7-8a1e7e8b504d + - 2308433e-f793-4821-98c4-734656941515 status: 200 OK code: 200 - duration: 197.43897ms + duration: 77.772865ms - id: 56 request: proto: HTTP/1.1 @@ -2763,7 +2763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2773,7 +2773,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2782,7 +2782,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:07 GMT + - Thu, 17 Oct 2024 09:06:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2792,10 +2792,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76e21be3-80e7-485f-b267-abeb60c73037 + - 05e7f4a5-25ca-4413-a9c1-511234875c53 status: 200 OK code: 200 - duration: 82.899137ms + duration: 72.020862ms - id: 57 request: proto: HTTP/1.1 @@ -2812,7 +2812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2822,7 +2822,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2831,7 +2831,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:12 GMT + - Thu, 17 Oct 2024 09:06:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2841,10 +2841,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ee8f113-3069-4b12-925a-ac15b5fb0ccd + - dfbe3226-ae20-43e3-a3df-1813d3f41393 status: 200 OK code: 200 - duration: 67.296211ms + duration: 70.817123ms - id: 58 request: proto: HTTP/1.1 @@ -2861,7 +2861,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2871,7 +2871,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2880,7 +2880,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:17 GMT + - Thu, 17 Oct 2024 09:06:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2890,10 +2890,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ca7fddd-7fc6-4fbb-aecb-40959a90ba5c + - 5fbe8058-3f86-413f-940a-9771e0998ab4 status: 200 OK code: 200 - duration: 70.465701ms + duration: 74.040504ms - id: 59 request: proto: HTTP/1.1 @@ -2910,7 +2910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2920,7 +2920,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2929,7 +2929,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:22 GMT + - Thu, 17 Oct 2024 09:07:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2939,10 +2939,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d414b73-0b0d-4168-b880-5cae14be61de + - 60f5141a-6326-4b14-9c55-856a15808015 status: 200 OK code: 200 - duration: 73.841072ms + duration: 69.977529ms - id: 60 request: proto: HTTP/1.1 @@ -2959,7 +2959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -2969,7 +2969,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2978,7 +2978,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:27 GMT + - Thu, 17 Oct 2024 09:07:06 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2988,10 +2988,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 913fb221-9deb-4282-b02c-0e65ca0482e7 + - 48a23664-0db9-4f40-86f1-091cacbfeb25 status: 200 OK code: 200 - duration: 66.754053ms + duration: 76.669828ms - id: 61 request: proto: HTTP/1.1 @@ -3008,7 +3008,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3018,7 +3018,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3027,7 +3027,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:32 GMT + - Thu, 17 Oct 2024 09:07:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3037,10 +3037,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2caf0ef-e2c4-4d1b-9201-e3f1fca01bc6 + - 1cf0ec2c-74a6-4311-a6bb-b6a8ff204ba1 status: 200 OK code: 200 - duration: 68.239738ms + duration: 72.98405ms - id: 62 request: proto: HTTP/1.1 @@ -3057,7 +3057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3067,7 +3067,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3076,7 +3076,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:38 GMT + - Thu, 17 Oct 2024 09:07:16 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3086,10 +3086,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca69a64c-75f3-4a88-8b5b-ae9843d6f011 + - 2f00ef32-c0d7-42a1-93c2-167a6f1508e5 status: 200 OK code: 200 - duration: 69.79817ms + duration: 78.084547ms - id: 63 request: proto: HTTP/1.1 @@ -3106,7 +3106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3116,7 +3116,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3125,7 +3125,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:43 GMT + - Thu, 17 Oct 2024 09:07:21 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3135,10 +3135,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 229562a0-9285-4407-b3da-2e63782ba8ae + - 20adc33a-61b8-4ede-9feb-8e78881ee6a9 status: 200 OK code: 200 - duration: 434.214366ms + duration: 95.518764ms - id: 64 request: proto: HTTP/1.1 @@ -3155,7 +3155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3165,7 +3165,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3174,7 +3174,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:48 GMT + - Thu, 17 Oct 2024 09:07:26 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3184,10 +3184,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d91c02e9-a7ec-45fe-8fab-92b4ad640b70 + - 35303064-910f-4dd9-b04c-b81c3396e537 status: 200 OK code: 200 - duration: 80.338483ms + duration: 71.428233ms - id: 65 request: proto: HTTP/1.1 @@ -3204,7 +3204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3214,7 +3214,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3223,7 +3223,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:53 GMT + - Thu, 17 Oct 2024 09:07:31 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3233,10 +3233,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 408651bd-0fce-4243-a197-0497529accb1 + - 5a57aee6-3ecc-4c29-a1d1-a89197d74ecd status: 200 OK code: 200 - duration: 80.200924ms + duration: 76.268743ms - id: 66 request: proto: HTTP/1.1 @@ -3253,7 +3253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3263,7 +3263,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3272,7 +3272,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:56:58 GMT + - Thu, 17 Oct 2024 09:07:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3282,10 +3282,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a2d07df-5f3a-4fdd-adba-bbeaf8d1a634 + - 18e635de-a662-4a01-ac73-762d59d981d5 status: 200 OK code: 200 - duration: 80.871161ms + duration: 71.070712ms - id: 67 request: proto: HTTP/1.1 @@ -3302,7 +3302,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3312,7 +3312,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3321,7 +3321,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:03 GMT + - Thu, 17 Oct 2024 09:07:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3331,10 +3331,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 884fa30e-fd0c-4ec1-b069-a573c321c9b0 + - aadcec4b-d755-4f62-ae79-2bfdabc47494 status: 200 OK code: 200 - duration: 82.61348ms + duration: 193.846759ms - id: 68 request: proto: HTTP/1.1 @@ -3351,7 +3351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3361,7 +3361,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3370,7 +3370,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:08 GMT + - Thu, 17 Oct 2024 09:07:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3380,10 +3380,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f773603e-32b7-4d38-8730-72af490605c7 + - 8d8cb8af-af6f-45a8-a860-b7573e26afe2 status: 200 OK code: 200 - duration: 67.393271ms + duration: 81.374418ms - id: 69 request: proto: HTTP/1.1 @@ -3400,7 +3400,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3410,7 +3410,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3419,7 +3419,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:13 GMT + - Thu, 17 Oct 2024 09:07:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3429,10 +3429,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02ebaf25-d0c9-4830-b473-41e118c3524d + - 1535a7ec-c2a0-48b5-ae56-a95881db61ee status: 200 OK code: 200 - duration: 81.434195ms + duration: 152.308035ms - id: 70 request: proto: HTTP/1.1 @@ -3449,7 +3449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3459,7 +3459,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3468,7 +3468,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:19 GMT + - Thu, 17 Oct 2024 09:07:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3478,10 +3478,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4460bb9f-2fb2-4f2c-b48b-a17eee8e8f52 + - 9b1bd9e5-c600-4c32-9b04-7d88fb227047 status: 200 OK code: 200 - duration: 64.519646ms + duration: 63.038129ms - id: 71 request: proto: HTTP/1.1 @@ -3498,7 +3498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3506,18 +3506,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:24 GMT + - Thu, 17 Oct 2024 09:08:02 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3527,10 +3527,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26145487-aa84-4603-a343-795df7afc143 + - b0f4e32e-072d-45fa-9500-6702b8ec3ea8 status: 200 OK code: 200 - duration: 65.505905ms + duration: 80.330204ms - id: 72 request: proto: HTTP/1.1 @@ -3547,7 +3547,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3555,18 +3555,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:24 GMT + - Thu, 17 Oct 2024 09:08:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3576,48 +3576,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c55a41b2-b5a0-4fbd-9c23-8667cf99f218 + - c61eda7f-3d01-413a-b908-5444f42ae8a0 status: 200 OK code: 200 - duration: 22.334812ms + duration: 98.405215ms - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 60 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd/snapshots - method: POST + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 383 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "383" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:24 GMT + - Thu, 17 Oct 2024 09:08:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3627,10 +3625,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6c4e544-0e4a-4bf9-9dd1-f0fe47adc08e + - c58f4cb6-36fe-4293-9c84-3786bf239d0b status: 200 OK code: 200 - duration: 294.162326ms + duration: 79.952362ms - id: 74 request: proto: HTTP/1.1 @@ -3647,7 +3645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3655,18 +3653,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 540 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "416" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:24 GMT + - Thu, 17 Oct 2024 09:08:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3676,10 +3674,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9035b819-d310-45eb-be78-4f83e732b58f + - 3d74a34c-798f-431d-8bfd-e0e731786c64 status: 200 OK code: 200 - duration: 67.5206ms + duration: 83.210204ms - id: 75 request: proto: HTTP/1.1 @@ -3696,7 +3694,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3704,18 +3702,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 540 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "416" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:29 GMT + - Thu, 17 Oct 2024 09:08:22 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3725,10 +3723,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da0c1422-1143-494a-bc12-2ae3739565c4 + - d69f4ff2-e3a1-4bd0-bc95-6ea0d39d1729 status: 200 OK code: 200 - duration: 87.361452ms + duration: 82.383126ms - id: 76 request: proto: HTTP/1.1 @@ -3745,7 +3743,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3753,18 +3751,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 540 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-15T12:57:24.910039Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "447" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:34 GMT + - Thu, 17 Oct 2024 09:08:27 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3774,10 +3772,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a693743a-4c04-4f6b-8eca-51213d82d059 + - 4517dea6-4904-4f5d-924a-3dd1c85859cc status: 200 OK code: 200 - duration: 100.870804ms + duration: 72.016984ms - id: 77 request: proto: HTTP/1.1 @@ -3794,7 +3792,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3802,18 +3800,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 540 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-15T12:57:24.910039Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "447" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:34 GMT + - Thu, 17 Oct 2024 09:08:33 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3823,48 +3821,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc8d2327-a69b-41db-96d4-c00919d08e5f + - be955d55-aa96-4b95-957b-4847b61ae791 status: 200 OK code: 200 - duration: 33.396751ms + duration: 75.727423ms - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 130 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"instance_name":"restored-mongodb-from-snapshot","node_type":"MGDB-PLAY2-NANO","node_number":1,"volume":{"volume_type":"sbs_5k"}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/6818fb63-3def-4cad-987f-aae0dbe3b004/restore - method: POST + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:35 GMT + - Thu, 17 Oct 2024 09:08:38 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3874,10 +3870,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 849eb029-6837-4999-bda5-ca340dc93f71 + - f5e4f143-badd-4b02-9490-cf08545d164f status: 200 OK code: 200 - duration: 619.238238ms + duration: 131.930627ms - id: 79 request: proto: HTTP/1.1 @@ -3894,7 +3890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3902,18 +3898,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:35 GMT + - Thu, 17 Oct 2024 09:08:43 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3923,10 +3919,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5862c25-a558-4873-a446-86328f16cf7e + - df79107d-df0b-4219-b308-ac1da16c200b status: 200 OK code: 200 - duration: 65.496164ms + duration: 82.195854ms - id: 80 request: proto: HTTP/1.1 @@ -3943,7 +3939,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -3951,18 +3947,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:40 GMT + - Thu, 17 Oct 2024 09:08:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3972,10 +3968,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bc9522c-c65f-46ba-8b65-5b373efe21ad + - 8891909a-1b62-44c1-8dd6-424fcfd14aa5 status: 200 OK code: 200 - duration: 75.283903ms + duration: 81.754498ms - id: 81 request: proto: HTTP/1.1 @@ -3992,7 +3988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4000,18 +3996,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:45 GMT + - Thu, 17 Oct 2024 09:08:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4021,10 +4017,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93047d4b-4247-437f-b564-c6f6d3072162 + - 502c7a84-f0be-473d-bf45-28af9a5616c2 status: 200 OK code: 200 - duration: 72.451922ms + duration: 70.649758ms - id: 82 request: proto: HTTP/1.1 @@ -4041,7 +4037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4049,18 +4045,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:50 GMT + - Thu, 17 Oct 2024 09:08:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4070,10 +4066,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c2374d4-4dba-4477-8495-910d04cde7fe + - b559a287-040b-468d-a24a-ba7be7e6b14c status: 200 OK code: 200 - duration: 94.365103ms + duration: 78.741248ms - id: 83 request: proto: HTTP/1.1 @@ -4090,7 +4086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4098,18 +4094,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:57:55 GMT + - Thu, 17 Oct 2024 09:09:03 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4119,10 +4115,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5280d62-8f2c-469d-b5b9-bf94e5262d69 + - ff31da0c-0bcc-4bea-a649-3d1a98edd254 status: 200 OK code: 200 - duration: 64.757269ms + duration: 67.265505ms - id: 84 request: proto: HTTP/1.1 @@ -4139,7 +4135,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4147,18 +4143,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:00 GMT + - Thu, 17 Oct 2024 09:09:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4168,10 +4164,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb7a2e91-dfdd-473e-8ed9-652f6f64a06c + - d1be2bd7-9b39-4537-996e-881a22c2d946 status: 200 OK code: 200 - duration: 67.44302ms + duration: 79.165577ms - id: 85 request: proto: HTTP/1.1 @@ -4188,7 +4184,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4196,18 +4192,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:05 GMT + - Thu, 17 Oct 2024 09:09:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4217,10 +4213,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb3d8a5e-b846-4aaa-b450-83aa7e50bb1e + - cd1cb6ba-7de8-47df-9dbb-b33844cd43ad status: 200 OK code: 200 - duration: 86.17344ms + duration: 98.31074ms - id: 86 request: proto: HTTP/1.1 @@ -4237,7 +4233,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4245,18 +4241,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:11 GMT + - Thu, 17 Oct 2024 09:09:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4266,10 +4262,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac12cb71-bf7d-40a4-aaa9-6486bb5d3db2 + - ba075bdd-cf0c-4272-9b6d-abcc34342991 status: 200 OK code: 200 - duration: 422.491845ms + duration: 73.08643ms - id: 87 request: proto: HTTP/1.1 @@ -4286,7 +4282,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4294,18 +4290,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:16 GMT + - Thu, 17 Oct 2024 09:09:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4315,10 +4311,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24c3fc30-1856-4750-aaa7-09d615d13668 + - e94e3be5-3abd-4263-8c6c-a7fdf5791d8d status: 200 OK code: 200 - duration: 73.813641ms + duration: 88.587314ms - id: 88 request: proto: HTTP/1.1 @@ -4335,7 +4331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4343,18 +4339,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:21 GMT + - Thu, 17 Oct 2024 09:09:29 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4364,10 +4360,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edf5d852-802c-473c-b526-2765e6c3cc08 + - 7df1e8ed-47f8-44a3-8381-4f5f4d0b249a status: 200 OK code: 200 - duration: 72.637148ms + duration: 85.644923ms - id: 89 request: proto: HTTP/1.1 @@ -4384,7 +4380,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4392,18 +4388,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:26 GMT + - Thu, 17 Oct 2024 09:09:34 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4413,10 +4409,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 157e6f79-1ae1-4adf-b93f-3f05c10bf552 + - 918bf9d5-b1df-4bfd-bb4f-2d8958d987d5 status: 200 OK code: 200 - duration: 76.048067ms + duration: 66.267655ms - id: 90 request: proto: HTTP/1.1 @@ -4433,7 +4429,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4441,18 +4437,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 533 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:31 GMT + - Thu, 17 Oct 2024 09:09:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4462,10 +4458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04500f7c-d4f3-41c6-887f-230af1c24316 + - 7834c8ac-cbad-4bdb-bfa9-529b9c69a088 status: 200 OK code: 200 - duration: 62.704401ms + duration: 246.76414ms - id: 91 request: proto: HTTP/1.1 @@ -4482,7 +4478,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c method: GET response: proto: HTTP/2.0 @@ -4490,18 +4486,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 533 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:36 GMT + - Thu, 17 Oct 2024 09:09:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4511,46 +4507,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bad56342-ed27-4515-b220-30198a2a0b99 + - 91db1b3a-babf-48ad-8db6-f8207715ef55 status: 200 OK code: 200 - duration: 66.941451ms + duration: 85.460065ms - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 60 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 383 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "544" + - "383" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:41 GMT + - Thu, 17 Oct 2024 09:09:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4560,10 +4558,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1b59379-668a-489e-a04e-04a492d8c51e + - b294451b-014a-41ca-b6cf-0b20be2905c3 status: 200 OK code: 200 - duration: 88.249703ms + duration: 170.997885ms - id: 93 request: proto: HTTP/1.1 @@ -4580,7 +4578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4588,18 +4586,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 416 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "544" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:46 GMT + - Thu, 17 Oct 2024 09:09:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4609,10 +4607,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d26b102-fdf5-4d72-92fe-06b0ac2d0830 + - 932f242f-ead4-4035-bb5e-b786774c5c7f status: 200 OK code: 200 - duration: 80.686156ms + duration: 93.973483ms - id: 94 request: proto: HTTP/1.1 @@ -4629,7 +4627,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4637,18 +4635,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 416 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "544" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:51 GMT + - Thu, 17 Oct 2024 09:09:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4658,10 +4656,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a577c37c-1b93-49bc-89c5-53c811439fbd + - 8278dafc-aea5-4a5c-aa3b-a447980afd7e status: 200 OK code: 200 - duration: 72.38006ms + duration: 72.760315ms - id: 95 request: proto: HTTP/1.1 @@ -4678,7 +4676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4686,18 +4684,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 447 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T09:09:40.345098Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "544" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:58:57 GMT + - Thu, 17 Oct 2024 09:09:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4707,10 +4705,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b21f53c-824f-4266-977f-7ec0e87125a9 + - 28b33bf0-5bba-4c73-85f9-84ed9538a166 status: 200 OK code: 200 - duration: 66.731997ms + duration: 90.255096ms - id: 96 request: proto: HTTP/1.1 @@ -4727,7 +4725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4735,18 +4733,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 447 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T09:09:40.345098Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "544" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:02 GMT + - Thu, 17 Oct 2024 09:09:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4756,28 +4754,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf40cdcf-2f73-4d6b-9c0d-866e1418314c + - 55b65686-de66-409d-8c97-baffa378cd3e status: 200 OK code: 200 - duration: 80.208047ms + duration: 54.049915ms - id: 97 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 130 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"instance_name":"restored-mongodb-from-snapshot","node_type":"MGDB-PLAY2-NANO","node_number":1,"volume":{"volume_type":"sbs_5k"}}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/4f56d4af-eca5-453a-816e-5440cfcd3801/restore + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -4786,7 +4786,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4795,7 +4795,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:07 GMT + - Thu, 17 Oct 2024 09:09:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4805,10 +4805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0253ae59-1a5d-417d-a19c-61885aed7ac9 + - 3a548126-45ea-41f3-9638-ed2884d23d7a status: 200 OK code: 200 - duration: 76.684419ms + duration: 601.482552ms - id: 98 request: proto: HTTP/1.1 @@ -4825,7 +4825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -4835,7 +4835,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4844,7 +4844,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:12 GMT + - Thu, 17 Oct 2024 09:09:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4854,10 +4854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dbba9bb-6ada-4bc8-aeb6-f1c0a702b424 + - d1bd3e76-b2c5-4d17-b6a8-74e43b29c887 status: 200 OK code: 200 - duration: 61.911467ms + duration: 60.062713ms - id: 99 request: proto: HTTP/1.1 @@ -4874,7 +4874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -4884,7 +4884,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4893,7 +4893,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:17 GMT + - Thu, 17 Oct 2024 09:09:55 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4903,10 +4903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 512aea5d-810a-4d5a-a292-31f485d0c1dd + - e127d255-c8cc-4aa9-bcf1-38472d2bb35c status: 200 OK code: 200 - duration: 64.582734ms + duration: 87.251417ms - id: 100 request: proto: HTTP/1.1 @@ -4923,7 +4923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -4933,7 +4933,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4942,7 +4942,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:22 GMT + - Thu, 17 Oct 2024 09:10:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4952,10 +4952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4edfb43-9ce0-4590-b922-17ed28983bff + - 82533f51-cc45-4408-9e24-1cb578675496 status: 200 OK code: 200 - duration: 70.942761ms + duration: 66.518566ms - id: 101 request: proto: HTTP/1.1 @@ -4972,7 +4972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -4982,7 +4982,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4991,7 +4991,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:27 GMT + - Thu, 17 Oct 2024 09:10:06 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5001,10 +5001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a900ee47-5d86-4c01-ba17-4f58ccee21c8 + - 94103c02-75d8-41a6-b632-c487a6ea7ede status: 200 OK code: 200 - duration: 78.694514ms + duration: 684.247431ms - id: 102 request: proto: HTTP/1.1 @@ -5021,7 +5021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5031,7 +5031,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5040,7 +5040,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:32 GMT + - Thu, 17 Oct 2024 09:10:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5050,10 +5050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a62e6967-f806-47db-afa7-662353b86fdc + - af39be1b-83ad-4503-90b3-3d7d9a40f60c status: 200 OK code: 200 - duration: 61.642827ms + duration: 70.365412ms - id: 103 request: proto: HTTP/1.1 @@ -5070,7 +5070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5080,7 +5080,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5089,7 +5089,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:37 GMT + - Thu, 17 Oct 2024 09:10:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5099,10 +5099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ed05f6e-df5a-43b0-9c5e-17e44cc9b175 + - 4f374be2-addd-4807-b7b0-3af25bb2526a status: 200 OK code: 200 - duration: 73.893245ms + duration: 722.095237ms - id: 104 request: proto: HTTP/1.1 @@ -5119,7 +5119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5129,7 +5129,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5138,7 +5138,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:42 GMT + - Thu, 17 Oct 2024 09:10:22 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5148,10 +5148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa04d171-1840-4152-9d5b-98738f168ea7 + - 1f6fdd92-3a12-4502-a64f-54a529df9da3 status: 200 OK code: 200 - duration: 80.068532ms + duration: 71.393827ms - id: 105 request: proto: HTTP/1.1 @@ -5168,7 +5168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5178,7 +5178,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5187,7 +5187,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:47 GMT + - Thu, 17 Oct 2024 09:10:27 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5197,10 +5197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e055583-ca0f-4496-8270-bcb897b564ec + - ab07209f-46a1-481e-b5f6-5a60bbcbdc8f status: 200 OK code: 200 - duration: 69.769758ms + duration: 76.442324ms - id: 106 request: proto: HTTP/1.1 @@ -5217,7 +5217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5227,7 +5227,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5236,7 +5236,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:52 GMT + - Thu, 17 Oct 2024 09:10:32 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5246,10 +5246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a744f1a-2642-47e3-a6ab-93ba30335917 + - dc2ee02a-c177-4ab1-b30e-85b7d1d4ba48 status: 200 OK code: 200 - duration: 78.388896ms + duration: 72.283727ms - id: 107 request: proto: HTTP/1.1 @@ -5266,7 +5266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5276,7 +5276,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5285,7 +5285,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 12:59:57 GMT + - Thu, 17 Oct 2024 09:10:37 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5295,10 +5295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fe038eb-ab55-4579-9e2f-5f3d039f7f92 + - 64bbbd39-29cd-41f9-bfab-784697172157 status: 200 OK code: 200 - duration: 60.310913ms + duration: 70.503124ms - id: 108 request: proto: HTTP/1.1 @@ -5315,7 +5315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5325,7 +5325,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5334,7 +5334,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:02 GMT + - Thu, 17 Oct 2024 09:10:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5344,10 +5344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5721ef30-2851-4a3c-be95-6fdba644d759 + - 7de61c2c-247d-4c8b-8cdf-5db8a8382036 status: 200 OK code: 200 - duration: 85.861183ms + duration: 62.219451ms - id: 109 request: proto: HTTP/1.1 @@ -5364,7 +5364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5374,7 +5374,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5383,7 +5383,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:08 GMT + - Thu, 17 Oct 2024 09:10:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5393,10 +5393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56b4038f-a068-4bac-9377-55e981b34e57 + - a6569b48-a182-4e90-80f8-f58601114fd2 status: 200 OK code: 200 - duration: 698.186449ms + duration: 78.561691ms - id: 110 request: proto: HTTP/1.1 @@ -5413,7 +5413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5423,7 +5423,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5432,7 +5432,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:13 GMT + - Thu, 17 Oct 2024 09:10:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5442,10 +5442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a358d789-63d4-44fd-8eb0-dec276b6c542 + - 1f40677d-3011-4754-8304-dac7907aa35f status: 200 OK code: 200 - duration: 104.023966ms + duration: 147.211154ms - id: 111 request: proto: HTTP/1.1 @@ -5462,7 +5462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5472,7 +5472,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5481,7 +5481,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:18 GMT + - Thu, 17 Oct 2024 09:10:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5491,10 +5491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2d1d126-18c4-44cd-8c12-8ee627321ff6 + - ee327125-7129-41a9-9fe0-681b6e1144b0 status: 200 OK code: 200 - duration: 104.890386ms + duration: 102.973115ms - id: 112 request: proto: HTTP/1.1 @@ -5511,7 +5511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5521,7 +5521,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5530,7 +5530,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:23 GMT + - Thu, 17 Oct 2024 09:11:03 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5540,10 +5540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9748c6da-6258-4ab5-b62e-2bbf5e3db3f0 + - 34a1fa43-5bfa-4e55-a9fd-8f275c9674b5 status: 200 OK code: 200 - duration: 57.534224ms + duration: 68.014845ms - id: 113 request: proto: HTTP/1.1 @@ -5560,7 +5560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5570,7 +5570,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5579,7 +5579,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:29 GMT + - Thu, 17 Oct 2024 09:11:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5589,10 +5589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f021df5-9150-44bf-9b8e-b37703df43d9 + - c28dc582-0216-41fe-b653-4ca086599087 status: 200 OK code: 200 - duration: 78.739027ms + duration: 59.353411ms - id: 114 request: proto: HTTP/1.1 @@ -5609,7 +5609,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5619,7 +5619,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5628,7 +5628,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:34 GMT + - Thu, 17 Oct 2024 09:11:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5638,10 +5638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48076651-4665-4715-886c-bc9ba15a37ee + - 7d0762a0-10a8-4b6c-a08f-b7a48a94dd4b status: 200 OK code: 200 - duration: 68.15699ms + duration: 80.459872ms - id: 115 request: proto: HTTP/1.1 @@ -5658,7 +5658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5668,7 +5668,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5677,7 +5677,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:39 GMT + - Thu, 17 Oct 2024 09:11:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5687,10 +5687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c33bde45-563a-49c5-b118-3b71209428d4 + - b9ab1c56-d9eb-4e3e-8497-d884c14a5a51 status: 200 OK code: 200 - duration: 438.371527ms + duration: 74.070259ms - id: 116 request: proto: HTTP/1.1 @@ -5707,7 +5707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5717,7 +5717,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5726,7 +5726,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:44 GMT + - Thu, 17 Oct 2024 09:11:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5736,10 +5736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21fc8763-f45a-4f02-9e0d-808dd1b3dc42 + - 0e1bfdab-8fb6-414d-a92f-eddacd1854eb status: 200 OK code: 200 - duration: 72.075368ms + duration: 73.59359ms - id: 117 request: proto: HTTP/1.1 @@ -5756,7 +5756,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5766,7 +5766,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5775,7 +5775,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:49 GMT + - Thu, 17 Oct 2024 09:11:28 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5785,10 +5785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f945079-42cd-41ae-837e-16e1d88488f4 + - 8313e4aa-451f-4c8b-a92a-bd30f5cbed7e status: 200 OK code: 200 - duration: 70.136145ms + duration: 469.869935ms - id: 118 request: proto: HTTP/1.1 @@ -5805,7 +5805,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5815,7 +5815,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5824,7 +5824,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:54 GMT + - Thu, 17 Oct 2024 09:11:33 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5834,10 +5834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15a07bfb-231e-42c7-86f7-bd930d5b6c2b + - a2370a82-35b6-4fa6-aaaa-b2417e2445dc status: 200 OK code: 200 - duration: 82.195518ms + duration: 90.902894ms - id: 119 request: proto: HTTP/1.1 @@ -5854,7 +5854,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5864,7 +5864,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5873,7 +5873,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:00:59 GMT + - Thu, 17 Oct 2024 09:11:38 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5883,10 +5883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e63834f6-2649-490d-bfd7-88c9d52a42d8 + - 83cab356-bed9-44ab-93c7-7f3c5333b8bb status: 200 OK code: 200 - duration: 69.293062ms + duration: 61.960006ms - id: 120 request: proto: HTTP/1.1 @@ -5903,7 +5903,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5913,7 +5913,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5922,7 +5922,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:04 GMT + - Thu, 17 Oct 2024 09:11:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5932,10 +5932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 987940de-6c06-4822-917f-932985d2eb8e + - 6c02b2e8-5ff1-4e4c-a3b7-47dace8d9989 status: 200 OK code: 200 - duration: 63.282704ms + duration: 70.572401ms - id: 121 request: proto: HTTP/1.1 @@ -5952,7 +5952,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -5962,7 +5962,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5971,7 +5971,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:09 GMT + - Thu, 17 Oct 2024 09:11:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5981,10 +5981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb7aa654-c5ef-48e6-8327-67b72b4799d9 + - 5cb52298-f509-466c-8723-51106ab80668 status: 200 OK code: 200 - duration: 72.717596ms + duration: 80.643054ms - id: 122 request: proto: HTTP/1.1 @@ -6001,7 +6001,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6011,7 +6011,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6020,7 +6020,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:15 GMT + - Thu, 17 Oct 2024 09:11:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6030,10 +6030,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fc6c5d1-a0b7-4205-9c8c-566f4d28c26d + - 2bfca5c2-10cb-4aa6-92d3-c264811048fa status: 200 OK code: 200 - duration: 84.400456ms + duration: 80.531069ms - id: 123 request: proto: HTTP/1.1 @@ -6050,7 +6050,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6060,7 +6060,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6069,7 +6069,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:20 GMT + - Thu, 17 Oct 2024 09:11:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6079,10 +6079,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5c99e30-dddb-4605-9fdc-629434a3d7f0 + - 6a14f9f5-4e89-4cfb-a68a-32d56221c6a2 status: 200 OK code: 200 - duration: 76.21942ms + duration: 74.31602ms - id: 124 request: proto: HTTP/1.1 @@ -6099,7 +6099,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6109,7 +6109,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6118,7 +6118,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:25 GMT + - Thu, 17 Oct 2024 09:12:04 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6128,10 +6128,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65e6b8ed-5473-4a0d-8994-289becd3f44a + - d9c3dd35-ca91-449d-a4b3-7bb1d19dacb9 status: 200 OK code: 200 - duration: 460.904733ms + duration: 67.640257ms - id: 125 request: proto: HTTP/1.1 @@ -6148,7 +6148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6158,7 +6158,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6167,7 +6167,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:30 GMT + - Thu, 17 Oct 2024 09:12:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6177,10 +6177,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4548520-6042-47db-93ef-0c59481812de + - 7f080b10-d89f-42ef-9abb-2392719fbdbb status: 200 OK code: 200 - duration: 78.623439ms + duration: 89.989622ms - id: 126 request: proto: HTTP/1.1 @@ -6197,7 +6197,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6207,7 +6207,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6216,7 +6216,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:35 GMT + - Thu, 17 Oct 2024 09:12:14 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6226,10 +6226,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56789eb4-1a8a-40f5-a5a7-78b52eca59e4 + - fe165e24-c23b-4d63-874e-6161be8bbcc6 status: 200 OK code: 200 - duration: 64.890339ms + duration: 78.176329ms - id: 127 request: proto: HTTP/1.1 @@ -6246,7 +6246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6256,7 +6256,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6265,7 +6265,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:40 GMT + - Thu, 17 Oct 2024 09:12:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6275,10 +6275,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b968207-dc93-4d9a-b54e-4ab6e83f9ee0 + - 44ac13b4-757d-47df-8677-8e322908deec status: 200 OK code: 200 - duration: 85.563089ms + duration: 73.327611ms - id: 128 request: proto: HTTP/1.1 @@ -6295,7 +6295,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6305,7 +6305,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6314,7 +6314,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:45 GMT + - Thu, 17 Oct 2024 09:12:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6324,10 +6324,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26b3ebc5-81bb-4314-a850-86c2c39c74ee + - e9b68472-23e9-4c85-90b8-b231255c8436 status: 200 OK code: 200 - duration: 79.644226ms + duration: 63.579423ms - id: 129 request: proto: HTTP/1.1 @@ -6344,7 +6344,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6354,7 +6354,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6363,7 +6363,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:51 GMT + - Thu, 17 Oct 2024 09:12:29 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6373,10 +6373,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c07a39cd-f8b8-4388-b742-6fce44c3530d + - dfd29066-6760-4083-9c44-b63c498dab51 status: 200 OK code: 200 - duration: 287.204945ms + duration: 67.6005ms - id: 130 request: proto: HTTP/1.1 @@ -6393,7 +6393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6403,7 +6403,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6412,7 +6412,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:01:56 GMT + - Thu, 17 Oct 2024 09:12:34 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6422,10 +6422,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d00702c-c707-4537-af9d-397019bcbbef + - 78d820d1-d175-4093-b55c-5c2ede33d9e6 status: 200 OK code: 200 - duration: 61.263ms + duration: 63.407737ms - id: 131 request: proto: HTTP/1.1 @@ -6442,7 +6442,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6452,7 +6452,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6461,7 +6461,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:01 GMT + - Thu, 17 Oct 2024 09:12:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6471,10 +6471,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54a88a35-b46d-4a8c-ac3b-0a873aa4cfea + - 4875b722-2ce7-4a01-8fb6-6ed3cfac990d status: 200 OK code: 200 - duration: 77.705045ms + duration: 56.330239ms - id: 132 request: proto: HTTP/1.1 @@ -6491,7 +6491,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6501,7 +6501,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6510,7 +6510,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:06 GMT + - Thu, 17 Oct 2024 09:12:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6520,10 +6520,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3747fc7a-4404-4cb7-b4ab-fa87df3f2b2f + - e1340f9b-5fb2-46af-a9b1-ac9c513c0d7f status: 200 OK code: 200 - duration: 89.284218ms + duration: 59.678889ms - id: 133 request: proto: HTTP/1.1 @@ -6540,7 +6540,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6550,7 +6550,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6559,7 +6559,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:11 GMT + - Thu, 17 Oct 2024 09:12:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6569,10 +6569,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 222d20a9-0048-4c3f-ae7c-4c638da8ae4c + - bd14239f-cd36-4a32-a723-76b3be1c638f status: 200 OK code: 200 - duration: 100.685827ms + duration: 73.972213ms - id: 134 request: proto: HTTP/1.1 @@ -6589,7 +6589,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6599,7 +6599,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6608,7 +6608,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:16 GMT + - Thu, 17 Oct 2024 09:12:55 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6618,10 +6618,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f70c4b91-4b59-4029-bd84-3b4c9e0bfe5e + - 64175c3a-3b6e-4287-b9d6-c2998ca879e7 status: 200 OK code: 200 - duration: 72.498015ms + duration: 77.272323ms - id: 135 request: proto: HTTP/1.1 @@ -6638,7 +6638,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6648,7 +6648,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6657,7 +6657,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:21 GMT + - Thu, 17 Oct 2024 09:13:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6667,10 +6667,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6982b24-1c18-4d97-9957-7f981eeaefe9 + - a751c192-33f2-4755-8caf-4a8106b99bf9 status: 200 OK code: 200 - duration: 82.93963ms + duration: 72.451821ms - id: 136 request: proto: HTTP/1.1 @@ -6687,7 +6687,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6697,7 +6697,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6706,7 +6706,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:26 GMT + - Thu, 17 Oct 2024 09:13:05 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6716,10 +6716,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23a751b5-0f0c-4e03-b0ef-9d228696a078 + - db36df10-74e0-4905-a8db-b65145169a9a status: 200 OK code: 200 - duration: 86.141609ms + duration: 68.632184ms - id: 137 request: proto: HTTP/1.1 @@ -6736,7 +6736,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6746,7 +6746,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6755,7 +6755,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:31 GMT + - Thu, 17 Oct 2024 09:13:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6765,10 +6765,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32a00c54-40be-4090-b8c2-d602e78cd28f + - 6c13790a-518a-45cd-b28e-190516da7e1b status: 200 OK code: 200 - duration: 73.328002ms + duration: 422.823822ms - id: 138 request: proto: HTTP/1.1 @@ -6785,7 +6785,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6795,7 +6795,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6804,7 +6804,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:36 GMT + - Thu, 17 Oct 2024 09:13:15 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6814,10 +6814,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa58744c-3f9a-41d7-92d1-06900e77752a + - 1460678a-dd68-4f4c-ba5e-64846d45ce1f status: 200 OK code: 200 - duration: 67.083783ms + duration: 73.620861ms - id: 139 request: proto: HTTP/1.1 @@ -6834,7 +6834,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6844,7 +6844,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6853,7 +6853,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:42 GMT + - Thu, 17 Oct 2024 09:13:20 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6863,10 +6863,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36291763-1d85-49f6-9922-810bba75acec + - 45eb7870-d8f4-4f67-85e1-6d5ab3e5c359 status: 200 OK code: 200 - duration: 68.60964ms + duration: 61.846194ms - id: 140 request: proto: HTTP/1.1 @@ -6883,7 +6883,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6893,7 +6893,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6902,7 +6902,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:47 GMT + - Thu, 17 Oct 2024 09:13:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6912,10 +6912,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbc320f6-0663-4108-b75c-c7982260df0f + - 770ccdef-afb9-4f08-af82-e1404240f34f status: 200 OK code: 200 - duration: 64.287206ms + duration: 61.832784ms - id: 141 request: proto: HTTP/1.1 @@ -6932,7 +6932,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6942,7 +6942,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6951,7 +6951,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:52 GMT + - Thu, 17 Oct 2024 09:13:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -6961,10 +6961,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8dd82535-b518-4a9c-aad6-9b20cd92925f + - c4857746-5dc6-4ae2-b73c-043d3611e664 status: 200 OK code: 200 - duration: 277.803758ms + duration: 74.717423ms - id: 142 request: proto: HTTP/1.1 @@ -6981,7 +6981,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -6991,7 +6991,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7000,7 +7000,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:02:57 GMT + - Thu, 17 Oct 2024 09:13:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7010,10 +7010,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28e52b6f-6d54-4434-b913-844ac0457ed9 + - 853043e3-2cec-4156-ab11-9cf988df1cff status: 200 OK code: 200 - duration: 67.848429ms + duration: 71.02599ms - id: 143 request: proto: HTTP/1.1 @@ -7030,7 +7030,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7040,7 +7040,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7049,7 +7049,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:02 GMT + - Thu, 17 Oct 2024 09:13:41 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7059,10 +7059,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 064d3c03-65cf-4de2-8750-c653a937ed95 + - 11bc18ef-cfbd-47a1-ad41-5f9d3c03b8aa status: 200 OK code: 200 - duration: 1.063603003s + duration: 75.357579ms - id: 144 request: proto: HTTP/1.1 @@ -7079,7 +7079,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7089,7 +7089,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7098,7 +7098,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:09 GMT + - Thu, 17 Oct 2024 09:13:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7108,10 +7108,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4cd2875-84d2-4bdc-a77c-98a2ef3dd436 + - 9c619ac0-4450-4a8d-8fc0-b0f4c9b46a6f status: 200 OK code: 200 - duration: 713.553159ms + duration: 76.955685ms - id: 145 request: proto: HTTP/1.1 @@ -7128,7 +7128,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7138,7 +7138,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7147,7 +7147,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:14 GMT + - Thu, 17 Oct 2024 09:13:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7157,10 +7157,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae7f2f45-cf84-4256-bc42-6b74fb5e181a + - aee89154-5cf7-4202-8e7c-9a2ff3b718c6 status: 200 OK code: 200 - duration: 64.315423ms + duration: 77.263509ms - id: 146 request: proto: HTTP/1.1 @@ -7177,7 +7177,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7187,7 +7187,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7196,7 +7196,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:19 GMT + - Thu, 17 Oct 2024 09:13:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7206,10 +7206,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a005cbee-62b8-4750-be79-e8fbf8a8df22 + - b73606ce-b771-4130-bc71-7cd62f5a6b1d status: 200 OK code: 200 - duration: 66.878157ms + duration: 80.617446ms - id: 147 request: proto: HTTP/1.1 @@ -7226,7 +7226,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7236,7 +7236,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7245,7 +7245,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:24 GMT + - Thu, 17 Oct 2024 09:14:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7255,10 +7255,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d37e9f77-c805-47b4-a73b-e1e8ee50c475 + - 3b8cd62c-08d9-465b-bf3f-e7d6b7ecd912 status: 200 OK code: 200 - duration: 77.979537ms + duration: 65.058504ms - id: 148 request: proto: HTTP/1.1 @@ -7275,7 +7275,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7285,7 +7285,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7294,7 +7294,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:29 GMT + - Thu, 17 Oct 2024 09:14:06 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7304,10 +7304,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c347755e-2a83-4194-8e17-123b23988860 + - ab406bf5-0090-42ab-b57c-1e2e4a61492c status: 200 OK code: 200 - duration: 86.876422ms + duration: 72.341956ms - id: 149 request: proto: HTTP/1.1 @@ -7324,7 +7324,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7334,7 +7334,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7343,7 +7343,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:34 GMT + - Thu, 17 Oct 2024 09:14:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7353,10 +7353,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e1340e6-fb14-45c2-8579-3149d07e43e3 + - 841d436f-9ffe-4ded-a520-71c90bc999d5 status: 200 OK code: 200 - duration: 80.948092ms + duration: 68.821049ms - id: 150 request: proto: HTTP/1.1 @@ -7373,7 +7373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7383,7 +7383,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7392,7 +7392,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:39 GMT + - Thu, 17 Oct 2024 09:14:16 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7402,10 +7402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62399923-039d-47e9-9152-d88048b5b2cd + - 58e9f631-00c6-46f8-8007-87fec923fb6a status: 200 OK code: 200 - duration: 98.498504ms + duration: 96.232496ms - id: 151 request: proto: HTTP/1.1 @@ -7422,7 +7422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7432,7 +7432,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7441,7 +7441,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:44 GMT + - Thu, 17 Oct 2024 09:14:21 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7451,10 +7451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48c3abfb-544f-4a03-8601-fbd431fe2bde + - 40c3d1be-25ec-425a-97b0-f92ad260fb48 status: 200 OK code: 200 - duration: 76.1183ms + duration: 70.099265ms - id: 152 request: proto: HTTP/1.1 @@ -7471,7 +7471,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7481,7 +7481,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7490,7 +7490,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:49 GMT + - Thu, 17 Oct 2024 09:14:26 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7500,10 +7500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7f8fb92-674d-4c34-b1a0-7c13c449049c + - a99ae24e-2c17-417c-8fd4-ba4b47582c21 status: 200 OK code: 200 - duration: 78.172073ms + duration: 79.157729ms - id: 153 request: proto: HTTP/1.1 @@ -7520,7 +7520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7530,7 +7530,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7539,7 +7539,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:54 GMT + - Thu, 17 Oct 2024 09:14:31 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7549,10 +7549,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d45153f-33f5-4396-8c3d-1858ae5a41a3 + - 41e7db66-4ae1-4b9e-9aeb-fe8ba1ef413a status: 200 OK code: 200 - duration: 84.507054ms + duration: 80.10688ms - id: 154 request: proto: HTTP/1.1 @@ -7569,7 +7569,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7579,7 +7579,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7588,7 +7588,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:03:59 GMT + - Thu, 17 Oct 2024 09:14:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7598,10 +7598,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccc0d07e-abc2-476f-a5d9-a3693a328068 + - 7ab51764-15a3-4555-9d9d-236f7417d436 status: 200 OK code: 200 - duration: 56.28076ms + duration: 65.278256ms - id: 155 request: proto: HTTP/1.1 @@ -7618,7 +7618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7628,7 +7628,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7637,7 +7637,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:05 GMT + - Thu, 17 Oct 2024 09:14:41 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7647,10 +7647,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72908bc0-8b92-4128-933a-16ae259a9a5a + - 500c2f13-4386-45c9-94ef-54f84b8ed79c status: 200 OK code: 200 - duration: 68.705395ms + duration: 78.82777ms - id: 156 request: proto: HTTP/1.1 @@ -7667,7 +7667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7677,7 +7677,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7686,7 +7686,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:10 GMT + - Thu, 17 Oct 2024 09:14:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7696,10 +7696,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac6b1916-e056-4bca-b105-3e0786b32299 + - efe8fb24-2685-4c17-aeeb-d9ecf74426c0 status: 200 OK code: 200 - duration: 85.858907ms + duration: 63.369966ms - id: 157 request: proto: HTTP/1.1 @@ -7716,7 +7716,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7726,7 +7726,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7735,7 +7735,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:15 GMT + - Thu, 17 Oct 2024 09:14:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7745,10 +7745,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59f22ca1-ec4f-43f4-be7a-089ec84d2694 + - 391fd309-87cb-488b-a136-1a0dbaf3251a status: 200 OK code: 200 - duration: 78.318081ms + duration: 69.654409ms - id: 158 request: proto: HTTP/1.1 @@ -7765,7 +7765,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7775,7 +7775,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7784,7 +7784,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:20 GMT + - Thu, 17 Oct 2024 09:14:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7794,10 +7794,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ca8e23b-68bc-4582-8440-1f48fb846a7a + - 5ccd0ce3-d855-4c24-9e3f-1db43abdb8e8 status: 200 OK code: 200 - duration: 73.097244ms + duration: 58.071755ms - id: 159 request: proto: HTTP/1.1 @@ -7814,7 +7814,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7824,7 +7824,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7833,7 +7833,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:25 GMT + - Thu, 17 Oct 2024 09:15:02 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7843,10 +7843,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5225ce4e-721a-486a-8584-a62eb6c677bf + - 610c4ca8-3765-47ba-b779-4e9d833e7b8a status: 200 OK code: 200 - duration: 73.708718ms + duration: 63.341267ms - id: 160 request: proto: HTTP/1.1 @@ -7863,7 +7863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7873,7 +7873,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7882,7 +7882,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:30 GMT + - Thu, 17 Oct 2024 09:15:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7892,10 +7892,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 505637e2-51f8-41ec-9749-651870f04638 + - a0baafca-fe88-476c-9986-f0253517bb12 status: 200 OK code: 200 - duration: 79.781763ms + duration: 81.399884ms - id: 161 request: proto: HTTP/1.1 @@ -7912,7 +7912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7920,18 +7920,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "537" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:35 GMT + - Thu, 17 Oct 2024 09:15:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7941,10 +7941,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83a3060c-d794-4551-a7b0-53136cf8968c + - 3e9953fa-d6ca-4ce0-89bd-bf7e539315ba status: 200 OK code: 200 - duration: 71.178581ms + duration: 71.447647ms - id: 162 request: proto: HTTP/1.1 @@ -7961,7 +7961,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -7969,18 +7969,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "537" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:35 GMT + - Thu, 17 Oct 2024 09:15:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7990,10 +7990,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b0228e7-37cd-474a-a8fd-94271001118c + - e2a0eca6-ae39-45a1-b1a4-1d917ad96435 status: 200 OK code: 200 - duration: 23.79539ms + duration: 91.059717ms - id: 163 request: proto: HTTP/1.1 @@ -8010,7 +8010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8018,18 +8018,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "537" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:35 GMT + - Thu, 17 Oct 2024 09:15:22 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8039,10 +8039,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c550dd1-115a-41af-80af-b7d2312647e6 + - 9c85f2f3-cabd-43c5-b0fe-afee7b864763 status: 200 OK code: 200 - duration: 28.682239ms + duration: 57.503594ms - id: 164 request: proto: HTTP/1.1 @@ -8059,7 +8059,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8067,18 +8067,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:36 GMT + - Thu, 17 Oct 2024 09:15:27 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8088,10 +8088,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8fca84d-e13c-4cc4-b6c9-1c14695a66a7 + - b0a4fce1-88ee-4ac2-8708-5985a2846b61 status: 200 OK code: 200 - duration: 71.120248ms + duration: 75.040421ms - id: 165 request: proto: HTTP/1.1 @@ -8108,7 +8108,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=8179d897-9290-4ef6-b38f-d57bdb5fdffd&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8116,18 +8116,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 544 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-15T13:04:30.755942Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "447" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:36 GMT + - Thu, 17 Oct 2024 09:15:32 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8137,10 +8137,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e770e48a-41aa-4cad-ae22-985ac4213663 + - 0c9cb9d1-08e3-4dad-befb-e9ba14093793 status: 200 OK code: 200 - duration: 76.877269ms + duration: 83.977379ms - id: 166 request: proto: HTTP/1.1 @@ -8157,7 +8157,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8165,18 +8165,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "537" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:36 GMT + - Thu, 17 Oct 2024 09:15:37 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8186,10 +8186,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b166c6a2-b669-489f-99e6-982e5bfd363c + - 128628fa-e4de-4b68-8e14-8376247b43e9 status: 200 OK code: 200 - duration: 31.383635ms + duration: 94.98235ms - id: 167 request: proto: HTTP/1.1 @@ -8206,7 +8206,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8214,18 +8214,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "537" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:37 GMT + - Thu, 17 Oct 2024 09:15:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8235,10 +8235,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9744728c-934b-49ae-b28c-872bdf966447 + - 87bee51b-101c-4a28-b882-0d638c940650 status: 200 OK code: 200 - duration: 35.279531ms + duration: 57.093165ms - id: 168 request: proto: HTTP/1.1 @@ -8255,26 +8255,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 - method: DELETE + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "540" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:37 GMT + - Thu, 17 Oct 2024 09:15:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8284,10 +8284,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4ab8a0c-0597-49b1-a236-350fa3ba4e0f + - 7bdb49a4-9519-41b5-bf12-24b2a5954f42 status: 200 OK code: 200 - duration: 152.6647ms + duration: 60.762775ms - id: 169 request: proto: HTTP/1.1 @@ -8304,7 +8304,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8312,18 +8312,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "540" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:37 GMT + - Thu, 17 Oct 2024 09:15:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8333,10 +8333,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d72c431d-4904-4e66-b219-7dd3b9ade6d2 + - d6d00e48-d050-43dd-a273-e8ff25396be6 status: 200 OK code: 200 - duration: 80.781168ms + duration: 188.561424ms - id: 170 request: proto: HTTP/1.1 @@ -8353,7 +8353,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8361,18 +8361,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "540" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:42 GMT + - Thu, 17 Oct 2024 09:15:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8382,10 +8382,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ee835d9-1f2a-47d5-b95e-747308e76388 + - 637e5241-9fc7-4f5b-a2c3-d89ed6ed50f3 status: 200 OK code: 200 - duration: 78.507796ms + duration: 52.398737ms - id: 171 request: proto: HTTP/1.1 @@ -8402,7 +8402,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8410,18 +8410,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "540" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:47 GMT + - Thu, 17 Oct 2024 09:16:03 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8431,10 +8431,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c80cd718-e8a4-4aa3-a0ba-41238038dce3 + - 3101cfe2-2042-44dd-bd47-15d5a0fe6f60 status: 200 OK code: 200 - duration: 68.714005ms + duration: 71.014148ms - id: 172 request: proto: HTTP/1.1 @@ -8451,7 +8451,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8459,18 +8459,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "540" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:52 GMT + - Thu, 17 Oct 2024 09:16:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8480,10 +8480,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1c71b98-f4eb-4e54-8f61-9a584c3fcfc3 + - 10b4c199-24f9-4c54-a528-fe2f414cb62f status: 200 OK code: 200 - duration: 71.873074ms + duration: 90.098486ms - id: 173 request: proto: HTTP/1.1 @@ -8500,7 +8500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8508,18 +8508,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:34.796758Z","endpoints":[{"dns_records":["206a710c-2eac-4f09-b7b4-8687f67dda48.mgdb.fr-par.scw.cloud"],"id":"ec263251-3c54-421e-b53f-2d2429afd758","ips":[],"port":27017,"public":{}}],"id":"206a710c-2eac-4f09-b7b4-8687f67dda48","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "540" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:04:57 GMT + - Thu, 17 Oct 2024 09:16:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8529,10 +8529,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71648d77-dee2-4c98-9c52-51f04af03a9d + - 12580e2b-3321-40b3-98fe-473541fcb8f0 status: 200 OK code: 200 - duration: 88.222053ms + duration: 69.709864ms - id: 174 request: proto: HTTP/1.1 @@ -8549,7 +8549,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8557,18 +8557,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 544 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"206a710c-2eac-4f09-b7b4-8687f67dda48","type":"not_found"}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "129" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:02 GMT + - Thu, 17 Oct 2024 09:16:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8578,10 +8578,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5723cde6-7221-4732-a1ee-4a3a1f437504 - status: 404 Not Found - code: 404 - duration: 51.977454ms + - ab106297-37b3-4dea-92d7-ed5fc2333d8a + status: 200 OK + code: 200 + duration: 65.370937ms - id: 175 request: proto: HTTP/1.1 @@ -8598,26 +8598,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/6818fb63-3def-4cad-987f-aae0dbe3b004 - method: DELETE + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 417 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:57:24.180508Z","expires_at":"2024-12-31T23:59:59Z","id":"6818fb63-3def-4cad-987f-aae0dbe3b004","instance_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-15T13:05:02.814585Z","volume_type":{"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "417" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:02 GMT + - Thu, 17 Oct 2024 09:16:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8627,10 +8627,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f40db1f2-926a-4cbc-8bdf-925eb1dbbb10 + - 6bb4d263-f9a4-4683-b7f0-e168c2f46a07 status: 200 OK code: 200 - duration: 135.27466ms + duration: 81.244423ms - id: 176 request: proto: HTTP/1.1 @@ -8647,7 +8647,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8655,18 +8655,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:03 GMT + - Thu, 17 Oct 2024 09:16:28 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8676,10 +8676,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffa57c29-cfe4-49b7-aa02-8704c1b26917 + - ade1b245-ec7e-47dd-b80e-89e325586fac status: 200 OK code: 200 - duration: 65.226974ms + duration: 427.464929ms - id: 177 request: proto: HTTP/1.1 @@ -8696,26 +8696,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd - method: DELETE + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:03 GMT + - Thu, 17 Oct 2024 09:16:34 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8725,10 +8725,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fe35e87-b28b-4d69-ae1d-473958d36748 + - 8547517c-2fdc-4967-ba85-66d13c7e43ae status: 200 OK code: 200 - duration: 126.654117ms + duration: 76.64104ms - id: 178 request: proto: HTTP/1.1 @@ -8745,7 +8745,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8753,18 +8753,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:03 GMT + - Thu, 17 Oct 2024 09:16:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8774,10 +8774,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a059d23f-56c2-477b-9ac7-2193c287c9fc + - 1c982cdb-9223-4b20-8054-daccdc16374c status: 200 OK code: 200 - duration: 74.757385ms + duration: 89.898915ms - id: 179 request: proto: HTTP/1.1 @@ -8794,7 +8794,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8802,18 +8802,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:08 GMT + - Thu, 17 Oct 2024 09:16:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8823,10 +8823,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35885b13-0fdc-46e8-bacc-d0923c9a73b3 + - d4d78e6e-2f38-421c-a694-8c29fad84aed status: 200 OK code: 200 - duration: 69.475727ms + duration: 74.048365ms - id: 180 request: proto: HTTP/1.1 @@ -8843,7 +8843,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8851,18 +8851,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:13 GMT + - Thu, 17 Oct 2024 09:16:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8872,10 +8872,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecb4cb2c-2a0d-4008-b2cf-14e2e3541d82 + - de01382c-a5e1-4594-a614-d48f43d98474 status: 200 OK code: 200 - duration: 73.9578ms + duration: 59.289332ms - id: 181 request: proto: HTTP/1.1 @@ -8892,7 +8892,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8900,18 +8900,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:18 GMT + - Thu, 17 Oct 2024 09:16:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8921,10 +8921,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39f22aa1-2112-40c2-be3b-a57c31e0dcbf + - 0ed40e3f-97fb-4fcb-b1a6-3eaf8d7eb021 status: 200 OK code: 200 - duration: 72.562199ms + duration: 90.904203ms - id: 182 request: proto: HTTP/1.1 @@ -8941,7 +8941,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8949,18 +8949,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:23 GMT + - Thu, 17 Oct 2024 09:16:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8970,10 +8970,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20711e70-dd56-47cf-8f51-c918a67a11b1 + - 220c52c6-69fe-4ad2-88dd-b4f40b4212c4 status: 200 OK code: 200 - duration: 69.386696ms + duration: 72.94321ms - id: 183 request: proto: HTTP/1.1 @@ -8990,7 +8990,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -8998,18 +8998,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:28 GMT + - Thu, 17 Oct 2024 09:17:04 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9019,10 +9019,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 333e4662-0a73-46c7-a32b-e01b0f655ffe + - 9a15baa6-6f58-4141-956b-76e7c0614b2d status: 200 OK code: 200 - duration: 79.177597ms + duration: 74.324713ms - id: 184 request: proto: HTTP/1.1 @@ -9039,7 +9039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -9047,18 +9047,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 537 uncompressed: false - body: '{"created_at":"2024-10-15T12:51:25.477730Z","endpoints":[{"dns_records":["8179d897-9290-4ef6-b38f-d57bdb5fdffd.mgdb.fr-par.scw.cloud"],"id":"8c63d235-6498-452a-ac5b-fda834cfb361","ips":[],"port":27017,"public":{}}],"id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:33 GMT + - Thu, 17 Oct 2024 09:17:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9068,10 +9068,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06503b43-43d0-46d8-a932-c9ff54762e5c + - e4ab9201-b21b-41b1-84d1-917a06e0d492 status: 200 OK code: 200 - duration: 66.128531ms + duration: 68.275304ms - id: 185 request: proto: HTTP/1.1 @@ -9088,7 +9088,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -9096,18 +9096,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 537 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","type":"not_found"}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "129" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:38 GMT + - Thu, 17 Oct 2024 09:17:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9117,10 +9117,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ea0ddf7-ff7c-4207-976a-4420ad3f6e75 - status: 404 Not Found - code: 404 - duration: 31.271447ms + - 88b7a8f9-8e5e-4f2e-acf2-f8cd48a97024 + status: 200 OK + code: 200 + duration: 66.603731ms - id: 186 request: proto: HTTP/1.1 @@ -9137,7 +9137,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/8179d897-9290-4ef6-b38f-d57bdb5fdffd + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -9145,18 +9145,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 537 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"8179d897-9290-4ef6-b38f-d57bdb5fdffd","type":"not_found"}' + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "129" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:38 GMT + - Thu, 17 Oct 2024 09:17:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9166,10 +9166,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73f47395-cc3c-47c4-b1dc-7ae4b028345d - status: 404 Not Found - code: 404 - duration: 66.107829ms + - f8e6433e-5644-4436-9b5e-2ef6299946e1 + status: 200 OK + code: 200 + duration: 31.410578ms - id: 187 request: proto: HTTP/1.1 @@ -9186,7 +9186,1232 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/206a710c-2eac-4f09-b7b4-8687f67dda48 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9363e486-58b8-43e0-8971-2bc854d4093a + status: 200 OK + code: 200 + duration: 31.76171ms + - id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 447 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T09:17:07.021812Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "447" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83579115-83a0-4727-9b88-27ee3da6e9cb + status: 200 OK + code: 200 + duration: 103.383001ms + - id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "537" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2cfe090a-5ffa-471a-96a0-755055efe404 + status: 200 OK + code: 200 + duration: 31.390886ms + - id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 537 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "537" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19db4d85-fdc1-460d-9a2b-e6a411474f40 + status: 200 OK + code: 200 + duration: 64.843605ms + - id: 191 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb03cecb-3c97-49c1-8eed-4dbb57a020a4 + status: 200 OK + code: 200 + duration: 183.031209ms + - id: 192 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 413fa73e-7001-41d0-86ff-e8bc0bf73104 + status: 200 OK + code: 200 + duration: 31.423476ms + - id: 193 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 077684e9-ca00-4a22-ae91-87bce3c7812a + status: 200 OK + code: 200 + duration: 77.684267ms + - id: 194 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 31f16768-3f70-4d88-967b-53234470372e + status: 200 OK + code: 200 + duration: 191.353577ms + - id: 195 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5c23a2c-315c-4c33-acef-1d4dc805881a + status: 200 OK + code: 200 + duration: 65.220013ms + - id: 196 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0976c01-56de-4ebd-8054-61a56b58cd02 + status: 200 OK + code: 200 + duration: 101.715112ms + - id: 197 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1ff5d61-93a0-4eb6-95dc-5533d4184352 + status: 200 OK + code: 200 + duration: 86.977139ms + - id: 198 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 511ce533-dd0b-4050-a023-d9ce4deaaf06 + status: 200 OK + code: 200 + duration: 75.639031ms + - id: 199 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 746ea2bd-ffdb-4b33-80fe-c89fa44abdfe + status: 200 OK + code: 200 + duration: 78.046819ms + - id: 200 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c25f877c-d872-4b87-bb75-c4156ff79355 + status: 200 OK + code: 200 + duration: 88.615758ms + - id: 201 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + 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":"fde8e567-6e25-4cb8-abf6-62244531ae8b","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d6d792c-4249-4fc5-a61f-28d07164a15b + status: 404 Not Found + code: 404 + duration: 117.578565ms + - id: 202 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/4f56d4af-eca5-453a-816e-5440cfcd3801 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 417 + uncompressed: false + body: '{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-17T09:17:57.301727Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "417" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1db2d624-df27-40b6-9d45-97db0330ead8 + status: 200 OK + code: 200 + duration: 158.953957ms + - id: 203 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18e759fb-d303-43c4-a946-efd78e889837 + status: 200 OK + code: 200 + duration: 60.651928ms + - id: 204 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90bbf382-e80e-4e93-af0a-9cdae42f4044 + status: 200 OK + code: 200 + duration: 153.645035ms + - id: 205 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:17:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 71dcbeff-231c-42ef-ac1b-05ea23fac428 + status: 200 OK + code: 200 + duration: 29.200244ms + - id: 206 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:18:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b506cb59-2cdb-4f1c-a767-f3169077a267 + status: 200 OK + code: 200 + duration: 74.636344ms + - id: 207 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:18:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d123345d-599b-44de-9444-9bca7e6c6d21 + status: 200 OK + code: 200 + duration: 61.43497ms + - id: 208 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:18:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8363bde0-8fa2-4c4a-b0c8-b6233f144bba + status: 200 OK + code: 200 + duration: 66.554799ms + - id: 209 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 536 + uncompressed: false + body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "536" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:18:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17ae3f44-516d-4ffd-a05a-03ad9dd45910 + status: 200 OK + code: 200 + duration: 61.599528ms + - id: 210 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + 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":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:18:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a47e615-9e55-4a7d-9b8c-0113ceaca1e9 + status: 404 Not Found + code: 404 + duration: 32.786896ms + - id: 211 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + 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":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 09:18:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1c0c74d7-441a-41da-99e1-827dd48294cf + status: 404 Not Found + code: 404 + duration: 27.005676ms + - id: 212 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b method: GET response: proto: HTTP/2.0 @@ -9196,7 +10421,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"206a710c-2eac-4f09-b7b4-8687f67dda48","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","type":"not_found"}' headers: Content-Length: - "129" @@ -9205,7 +10430,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 15 Oct 2024 13:05:38 GMT + - Thu, 17 Oct 2024 09:18:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9215,7 +10440,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6819a50-5f37-4003-90be-17e2d77c3b5a + - f38cf4f6-a959-4a74-8106-269071871758 status: 404 Not Found code: 404 - duration: 30.15201ms + duration: 28.442125ms diff --git a/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml index 9641a39151..0f38588777 100644 --- a/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 314 + content_length: 316 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PRO2-XXS","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-instance","version":"7.0.12","tags":null,"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' form: {} headers: Content-Type: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:02 GMT + - Thu, 17 Oct 2024 08:49:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43989850-b9c2-443f-b062-6c323f8d675e + - 3402f143-7362-4be9-a6c6-2d007bc1129f status: 200 OK code: 200 - duration: 261.328068ms + duration: 619.172238ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:02 GMT + - Thu, 17 Oct 2024 08:49:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2309c453-8eae-4655-b9c7-f52b49d5770e + - ff5550d7-4391-434e-a970-a59adfe2464f status: 200 OK code: 200 - duration: 74.206011ms + duration: 71.184416ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:07 GMT + - Thu, 17 Oct 2024 08:49:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e62bf052-5bd9-4e35-a276-e4a9855c9534 + - 78f084e0-74f8-4749-89ad-e4952623dee4 status: 200 OK code: 200 - duration: 63.536956ms + duration: 73.063905ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:12 GMT + - Thu, 17 Oct 2024 08:49:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf1d054f-ff59-4189-a980-da1a4eb8b777 + - 9b614dca-60ae-446e-9ec1-f6e8962cbbbc status: 200 OK code: 200 - duration: 138.156262ms + duration: 71.486225ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:17 GMT + - Thu, 17 Oct 2024 08:49:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dbe31e1-c2b1-42eb-ae2d-5e658b21fcd7 + - a505b527-6c29-4a18-911c-82bbcf64536f status: 200 OK code: 200 - duration: 29.438396ms + duration: 79.68105ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:22 GMT + - Thu, 17 Oct 2024 08:49:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97d2dcbf-cf7d-4269-b2ff-99fac457670c + - c663cdfa-f7d8-40d8-a13d-b97bc0d04c5b status: 200 OK code: 200 - duration: 25.362325ms + duration: 80.681139ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:27 GMT + - Thu, 17 Oct 2024 08:49:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f8b3e95-fed2-4167-9761-172972668130 + - 7515d8a5-5413-4e60-bd17-604c5878eb52 status: 200 OK code: 200 - duration: 68.688525ms + duration: 67.454128ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:32 GMT + - Thu, 17 Oct 2024 08:49:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fda6d8d-04b2-4149-8d7c-6348d23239cf + - a5bd9162-48ae-4d22-bf2a-1e79c84a9266 status: 200 OK code: 200 - duration: 68.817008ms + duration: 70.053568ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:37 GMT + - Thu, 17 Oct 2024 08:49:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6355cae7-5ded-4903-bd68-fd8c0f92c131 + - eb0418bd-a1cb-4109-9f4e-1ed4c2074c79 status: 200 OK code: 200 - duration: 70.865649ms + duration: 75.365316ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:42 GMT + - Thu, 17 Oct 2024 08:49:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 369e2d35-a76a-4779-b113-15fb786bbd16 + - e69d5b03-648d-4013-8192-f3af9f0cabbf status: 200 OK code: 200 - duration: 73.564585ms + duration: 59.03674ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -517,20 +517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:47 GMT + - Thu, 17 Oct 2024 08:49:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69def0d0-dcdc-49aa-b374-ff2f226757e0 + - 6f71f83c-4fc9-4ae4-9715-51c9d8ea0311 status: 200 OK code: 200 - duration: 25.816581ms + duration: 81.615704ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -566,20 +566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:53 GMT + - Thu, 17 Oct 2024 08:49:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b64f8dbc-67ce-47fc-940f-5593e81ba672 + - fb865e4d-ebb2-4a2f-90fc-71e7b4c2a3a8 status: 200 OK code: 200 - duration: 24.497778ms + duration: 64.572707ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -615,20 +615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:58 GMT + - Thu, 17 Oct 2024 08:50:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd3f23e-b905-4839-b9de-dbf74700dee2 + - 219d18f6-fe98-4b88-9dca-57445233906e status: 200 OK code: 200 - duration: 73.214361ms + duration: 65.623439ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -664,20 +664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:03 GMT + - Thu, 17 Oct 2024 08:50:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5af17892-312c-4736-8e89-3349818dd257 + - 9467e9e6-7749-4690-afa9-59898833b6c7 status: 200 OK code: 200 - duration: 71.370978ms + duration: 55.137346ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -713,20 +713,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:08 GMT + - Thu, 17 Oct 2024 08:50:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d72852d0-1365-407b-b9a3-1b8cd7e05611 + - 3c8dc37d-96ec-4332-bc96-01dfb9ceb26f status: 200 OK code: 200 - duration: 54.280518ms + duration: 86.429861ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -762,20 +762,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:13 GMT + - Thu, 17 Oct 2024 08:50:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a314d18-b668-4964-a1dc-2c103f553098 + - 759c163f-c329-43ef-b05a-a3ba8b3c8035 status: 200 OK code: 200 - duration: 34.255244ms + duration: 82.260171ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -811,20 +811,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:18 GMT + - Thu, 17 Oct 2024 08:50:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87b4a746-9314-4b52-95c3-2f2f53f1b1e1 + - c9f2d7f3-8976-44e0-8380-eb98a9a4c5ea status: 200 OK code: 200 - duration: 69.389463ms + duration: 63.59816ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -860,20 +860,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:23 GMT + - Thu, 17 Oct 2024 08:50:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b734397-e09e-4223-a692-3d53371bb8e6 + - 056796b1-3bbc-446d-b551-fb7481e9e278 status: 200 OK code: 200 - duration: 64.773259ms + duration: 78.164548ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -909,20 +909,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:28 GMT + - Thu, 17 Oct 2024 08:50:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc6825d4-5625-42e4-895d-72d322b1ce8d + - 4e145630-8e19-49e9-bf7d-5cdc245f127f status: 200 OK code: 200 - duration: 81.982682ms + duration: 79.842813ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -958,20 +958,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:33 GMT + - Thu, 17 Oct 2024 08:50:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8d6ee5d-e57f-4da4-97c4-c6b7e9a2ff0e + - 31a883e3-c64d-4d8b-b3b4-3c7348fd511a status: 200 OK code: 200 - duration: 58.306058ms + duration: 71.169913ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1007,20 +1007,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:38 GMT + - Thu, 17 Oct 2024 08:50:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12f547dc-49bc-4bf5-b85e-41004c0de680 + - 3bc3216f-a600-4346-8790-9ab1c69d380a status: 200 OK code: 200 - duration: 68.674531ms + duration: 85.917668ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1056,20 +1056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:43 GMT + - Thu, 17 Oct 2024 08:50:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88ceea3d-f3b5-4f44-b2b5-e8775e165c79 + - 3fbb1e74-0bf3-4f40-a3ba-baf43522059e status: 200 OK code: 200 - duration: 26.532926ms + duration: 76.165502ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1105,20 +1105,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:48 GMT + - Thu, 17 Oct 2024 08:50:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3290379a-0a70-471f-8f12-3027bb69be82 + - b8740cf7-8167-4291-be9e-2d265fb7ae8d status: 200 OK code: 200 - duration: 71.286318ms + duration: 79.080616ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1154,20 +1154,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:53 GMT + - Thu, 17 Oct 2024 08:50:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0283d07f-e80d-40de-894e-ad9f3c03b58d + - 429b3d2e-556b-4e8f-a924-7b41aba99837 status: 200 OK code: 200 - duration: 57.775222ms + duration: 63.113313ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1203,20 +1203,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:58 GMT + - Thu, 17 Oct 2024 08:51:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b70938e-1919-4a3c-b7eb-12b0d31a9354 + - 085fe316-1aef-4a1a-a64c-c4522e88f38c status: 200 OK code: 200 - duration: 67.485246ms + duration: 63.925528ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1252,20 +1252,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:03 GMT + - Thu, 17 Oct 2024 08:51:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1195527-eb5b-49c3-bd6d-9c824d24f951 + - acc2ed44-9ea5-4022-b7ad-135b5ed459da status: 200 OK code: 200 - duration: 78.677894ms + duration: 74.953538ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1301,20 +1301,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:08 GMT + - Thu, 17 Oct 2024 08:51:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9672db31-c725-4575-ac25-a85d822c6852 + - e993b5d7-2386-4c84-8cd9-25c6b8173230 status: 200 OK code: 200 - duration: 64.20079ms + duration: 59.289083ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1350,20 +1350,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:14 GMT + - Thu, 17 Oct 2024 08:51:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 218018dd-af37-4c85-9970-50f9b3b42f73 + - 6fda5aff-383c-4daf-a8ba-5a4b9ff16b81 status: 200 OK code: 200 - duration: 79.420996ms + duration: 86.701564ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1399,20 +1399,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:19 GMT + - Thu, 17 Oct 2024 08:51:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4221988-e674-465f-89f7-1f84d881672e + - b1f10b28-1175-42e6-8ca7-4d650f826bfb status: 200 OK code: 200 - duration: 69.586539ms + duration: 82.997266ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1448,20 +1448,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:24 GMT + - Thu, 17 Oct 2024 08:51:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27fb19a9-7138-4824-80a0-27b77fd6b97a + - e512b585-cb48-47a3-80f3-ce5486072513 status: 200 OK code: 200 - duration: 70.999067ms + duration: 79.636523ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1497,20 +1497,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:29 GMT + - Thu, 17 Oct 2024 08:51:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a616f91b-329a-489e-9fad-94cc14188003 + - a05763e2-d89b-4fce-b769-d3a6a119a4e6 status: 200 OK code: 200 - duration: 66.751623ms + duration: 81.368709ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1546,20 +1546,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:34 GMT + - Thu, 17 Oct 2024 08:51:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10626e7e-2da3-436e-a9c0-4018d896fc18 + - 8b89d545-e12b-4c7e-9d7f-9a0b7ae3a790 status: 200 OK code: 200 - duration: 75.098233ms + duration: 64.205669ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1595,20 +1595,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:39 GMT + - Thu, 17 Oct 2024 08:51:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 718b1829-98f1-464a-9bbd-e5b646622adf + - 3d7566d1-0063-4aa3-82c2-3eecf30228a4 status: 200 OK code: 200 - duration: 67.003176ms + duration: 69.530202ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1644,20 +1644,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:44 GMT + - Thu, 17 Oct 2024 08:51:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b19d55ba-d3b8-4900-83f7-6b9d8b314c22 + - 3f8b2b73-8a1b-4e59-865f-791d7f7636d8 status: 200 OK code: 200 - duration: 77.618721ms + duration: 59.597443ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1693,20 +1693,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:49 GMT + - Thu, 17 Oct 2024 08:51:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e93dca61-7717-4fa6-87c2-614f4da71dcc + - 614ee293-fc40-44e2-acf5-d73b8e66bb0e status: 200 OK code: 200 - duration: 63.505427ms + duration: 64.069066ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1742,20 +1742,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:54 GMT + - Thu, 17 Oct 2024 08:51:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04009ad2-8c9a-4f00-9a86-ee3d62dc915a + - 30858eb8-9eac-4f87-b360-5df4fc71b904 status: 200 OK code: 200 - duration: 69.695753ms + duration: 53.982261ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1791,20 +1791,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:59 GMT + - Thu, 17 Oct 2024 08:52:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c525ecbf-f231-4dd5-808f-ed3099773fdd + - 9bd7c797-8cb6-4276-a5c7-de235533da2b status: 200 OK code: 200 - duration: 76.048549ms + duration: 66.551579ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1840,20 +1840,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:04 GMT + - Thu, 17 Oct 2024 08:52:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23ec9431-8007-430f-80ef-f5d8a8a6c113 + - fd67aaf6-3ed2-4789-9b25-68d10c52441c status: 200 OK code: 200 - duration: 62.861938ms + duration: 73.747938ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1889,20 +1889,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:09 GMT + - Thu, 17 Oct 2024 08:52:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c375f57b-1312-496a-94af-569953f7a38b + - 6b6194ad-19e0-44b5-af4c-8ba1e179b1d9 status: 200 OK code: 200 - duration: 72.675388ms + duration: 88.571786ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1938,20 +1938,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:14 GMT + - Thu, 17 Oct 2024 08:52:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1959,10 +1959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66879591-03fd-421a-a100-ff5d53f4acf6 + - 84e377a1-7730-4cca-abb1-84a8c8398931 status: 200 OK code: 200 - duration: 71.770589ms + duration: 58.641205ms - id: 40 request: proto: HTTP/1.1 @@ -1979,7 +1979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -1987,20 +1987,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:20 GMT + - Thu, 17 Oct 2024 08:52:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2008,10 +2008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec59cfc9-9d8f-42c3-81d6-0a3cf6742551 + - 050b457b-7114-4bed-b0b6-7820916746bb status: 200 OK code: 200 - duration: 420.581806ms + duration: 73.093092ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2036,20 +2036,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:25 GMT + - Thu, 17 Oct 2024 08:52:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,10 +2057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec73b7a9-6fb5-44df-98be-ae84fa6ffda4 + - 693d1dd7-1415-4161-a627-cbbf9e803ce7 status: 200 OK code: 200 - duration: 66.924415ms + duration: 70.319959ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2085,20 +2085,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:30 GMT + - Thu, 17 Oct 2024 08:52:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2106,10 +2106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9bcdf46-b79a-4d27-8b24-43a550b2c46e + - 7bec36d9-0b08-472b-97a9-2a03ed245d1b status: 200 OK code: 200 - duration: 58.882766ms + duration: 70.038982ms - id: 43 request: proto: HTTP/1.1 @@ -2126,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2134,20 +2134,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:35 GMT + - Thu, 17 Oct 2024 08:52:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2155,10 +2155,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a312b0e6-9b06-4973-85cb-6497f3eba237 + - 0bae5cc5-2f67-4c07-ac5c-5ac657a15d22 status: 200 OK code: 200 - duration: 79.583061ms + duration: 210.917973ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2183,20 +2183,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:40 GMT + - Thu, 17 Oct 2024 08:52:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2204,10 +2204,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a5658cd-37b7-4d7e-bf7c-5cc99e040df0 + - 5e223a10-49fd-484a-9e6d-2fd5669a556c status: 200 OK code: 200 - duration: 61.356609ms + duration: 70.753173ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2232,20 +2232,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:45 GMT + - Thu, 17 Oct 2024 08:52:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2253,10 +2253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d912937e-8679-4206-a219-2db885bc61ac + - 42c413f7-93e4-47fe-8e5b-542b6c76c4dd status: 200 OK code: 200 - duration: 86.459912ms + duration: 78.676787ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2281,20 +2281,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:50 GMT + - Thu, 17 Oct 2024 08:52:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2302,10 +2302,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 404a284a-27aa-4617-b8a3-d5f951480acd + - 137cc50d-c63b-4092-8745-c91419694d93 status: 200 OK code: 200 - duration: 70.116035ms + duration: 714.114142ms - id: 47 request: proto: HTTP/1.1 @@ -2322,7 +2322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2330,20 +2330,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:55 GMT + - Thu, 17 Oct 2024 08:52:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2351,10 +2351,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d6d5940-5941-49dc-b1b0-6c35cf170ab6 + - 300de9b0-77b3-4da2-bc5f-a38488b37323 status: 200 OK code: 200 - duration: 60.789038ms + duration: 66.481457ms - id: 48 request: proto: HTTP/1.1 @@ -2371,7 +2371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2379,20 +2379,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:00 GMT + - Thu, 17 Oct 2024 08:53:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2400,10 +2400,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5be806bc-1653-4a81-95ed-fc245fbaf193 + - 7aa0ae00-603b-4c70-9b8f-abed0bb0db4f status: 200 OK code: 200 - duration: 72.168302ms + duration: 69.131713ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2428,20 +2428,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:05 GMT + - Thu, 17 Oct 2024 08:53:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2449,10 +2449,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 939504be-d1cb-4f41-80e5-1a7b623a7c71 + - f4db3299-0163-4d8b-8962-37af0cff3650 status: 200 OK code: 200 - duration: 59.23792ms + duration: 74.465387ms - id: 50 request: proto: HTTP/1.1 @@ -2469,7 +2469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2477,20 +2477,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:11 GMT + - Thu, 17 Oct 2024 08:53:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2498,10 +2498,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ca52137-7042-406e-bfef-94f88dc3b779 + - 8b596519-a699-4aa7-b4a5-ddb57285e226 status: 200 OK code: 200 - duration: 60.546ms + duration: 73.826737ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2526,20 +2526,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:16 GMT + - Thu, 17 Oct 2024 08:53:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2547,10 +2547,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b925d7b-269c-49d4-a193-7ec5adece49b + - 7459540b-8b1e-4b3c-9d30-22d0e9cefbe1 status: 200 OK code: 200 - duration: 70.56585ms + duration: 63.546468ms - id: 52 request: proto: HTTP/1.1 @@ -2567,7 +2567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2575,20 +2575,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:21 GMT + - Thu, 17 Oct 2024 08:53:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2596,10 +2596,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41f3f607-11d6-424f-80ab-b537cefd83c5 + - 4941e7f7-9152-408e-982a-fa708fbe6c34 status: 200 OK code: 200 - duration: 68.881642ms + duration: 83.552438ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2624,20 +2624,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:26 GMT + - Thu, 17 Oct 2024 08:53:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2645,10 +2645,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a756a0d-7353-49a0-a07e-be24fe1f217b + - 08d9cc3c-9298-4f6c-b519-23bdd8e88b80 status: 200 OK code: 200 - duration: 67.187446ms + duration: 78.835936ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2673,20 +2673,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:31 GMT + - Thu, 17 Oct 2024 08:53:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2694,10 +2694,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8554af7e-614b-4bf4-bab5-88afab4ab373 + - dd1ac9fc-8ac0-4e52-826e-3ef81cba6c31 status: 200 OK code: 200 - duration: 57.559527ms + duration: 69.890508ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2722,20 +2722,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:36 GMT + - Thu, 17 Oct 2024 08:53:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,10 +2743,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edf58128-5178-4851-9fbb-1958d156010a + - 27c87af8-0d4e-4c4a-b19a-90741bd68b89 status: 200 OK code: 200 - duration: 53.447493ms + duration: 59.854799ms - id: 56 request: proto: HTTP/1.1 @@ -2763,7 +2763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2771,20 +2771,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:41 GMT + - Thu, 17 Oct 2024 08:53:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2792,10 +2792,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d72d303-08be-417c-8012-43f37d8eee89 + - 8bea7ed5-d0fe-444d-af1f-62f2017541d1 status: 200 OK code: 200 - duration: 73.3479ms + duration: 93.290949ms - id: 57 request: proto: HTTP/1.1 @@ -2812,7 +2812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2820,20 +2820,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:46 GMT + - Thu, 17 Oct 2024 08:53:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2841,10 +2841,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 325e2a98-94f9-4f88-8c59-027136c22a73 + - 5fcbdf81-24d8-4773-904f-80d72fc38b12 status: 200 OK code: 200 - duration: 65.842293ms + duration: 100.522095ms - id: 58 request: proto: HTTP/1.1 @@ -2861,7 +2861,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2869,20 +2869,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:51 GMT + - Thu, 17 Oct 2024 08:53:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2890,10 +2890,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3c8bc77-5cc9-4bcb-a5a2-a92b362626cb + - 65041ab2-5f54-40fc-96d0-820b28ef9f7e status: 200 OK code: 200 - duration: 66.743155ms + duration: 85.751627ms - id: 59 request: proto: HTTP/1.1 @@ -2910,7 +2910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2918,20 +2918,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:56 GMT + - Thu, 17 Oct 2024 08:54:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2939,10 +2939,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3422059e-b3ea-4d4c-a10f-735d22005671 + - 62e85342-cfb0-4ddd-99a1-0145e6ceb066 status: 200 OK code: 200 - duration: 59.76798ms + duration: 63.579226ms - id: 60 request: proto: HTTP/1.1 @@ -2959,7 +2959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -2967,20 +2967,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:01 GMT + - Thu, 17 Oct 2024 08:54:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2988,10 +2988,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a957ede-418c-41f7-a5ba-d101cc9822eb + - f8ee2219-1e88-4cc1-8bc7-22c5bbcc6589 status: 200 OK code: 200 - duration: 63.637067ms + duration: 65.406281ms - id: 61 request: proto: HTTP/1.1 @@ -3008,7 +3008,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3016,20 +3016,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:06 GMT + - Thu, 17 Oct 2024 08:54:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3037,10 +3037,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0765c73-7f6c-4c88-9fcd-437b7e2565f9 + - 6d4e4298-e217-4770-a6fe-daa5feaf9b69 status: 200 OK code: 200 - duration: 65.211092ms + duration: 73.115756ms - id: 62 request: proto: HTTP/1.1 @@ -3057,7 +3057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3065,20 +3065,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:11 GMT + - Thu, 17 Oct 2024 08:54:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3086,10 +3086,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de257147-af78-4a73-aa91-f6dd87222182 + - cdc13802-ffcf-4db6-a046-a5cc5c9bb45b status: 200 OK code: 200 - duration: 99.570479ms + duration: 75.118845ms - id: 63 request: proto: HTTP/1.1 @@ -3106,7 +3106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3114,20 +3114,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:16 GMT + - Thu, 17 Oct 2024 08:54:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3135,10 +3135,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6b8d04e-2a2c-46ef-a09f-ece5299e3349 + - ff2f9356-f305-4351-8db4-a21f31c5003b status: 200 OK code: 200 - duration: 71.005207ms + duration: 124.328216ms - id: 64 request: proto: HTTP/1.1 @@ -3155,7 +3155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3163,20 +3163,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:21 GMT + - Thu, 17 Oct 2024 08:54:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3184,10 +3184,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06f54cc6-a875-4f4b-9a36-1d254469c03a + - fafd652f-31c4-4cc9-98b7-9d6bb0eff8dc status: 200 OK code: 200 - duration: 61.21222ms + duration: 80.327519ms - id: 65 request: proto: HTTP/1.1 @@ -3204,7 +3204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3212,20 +3212,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:27 GMT + - Thu, 17 Oct 2024 08:54:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3233,10 +3233,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35d56ccf-c0e9-4a13-a44c-4d62c37fb6d9 + - 3114719d-de5a-4fb2-b962-f8979008dff9 status: 200 OK code: 200 - duration: 69.469052ms + duration: 76.585057ms - id: 66 request: proto: HTTP/1.1 @@ -3253,7 +3253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3261,20 +3261,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:32 GMT + - Thu, 17 Oct 2024 08:54:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3282,10 +3282,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f36ea6b7-fb5f-4af0-b282-61c085064e83 + - b87da819-cc87-4228-b25a-d0254d3f5afd status: 200 OK code: 200 - duration: 59.569743ms + duration: 88.147534ms - id: 67 request: proto: HTTP/1.1 @@ -3302,7 +3302,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3310,20 +3310,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:37 GMT + - Thu, 17 Oct 2024 08:54:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3331,10 +3331,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b87ae0c-c4f8-4581-be5e-e9cbc49d39c7 + - 048b9108-9d30-4a7d-a2dd-551274699c53 status: 200 OK code: 200 - duration: 60.826574ms + duration: 68.970228ms - id: 68 request: proto: HTTP/1.1 @@ -3351,7 +3351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3359,20 +3359,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:42 GMT + - Thu, 17 Oct 2024 08:54:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3380,10 +3380,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f30c9351-51a9-44b1-be6f-2fab2e8ee999 + - ede7713c-827b-442d-8d15-b001689703d3 status: 200 OK code: 200 - duration: 141.54348ms + duration: 82.828382ms - id: 69 request: proto: HTTP/1.1 @@ -3400,7 +3400,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3408,20 +3408,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:47 GMT + - Thu, 17 Oct 2024 08:54:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3429,10 +3429,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e35e5992-3903-4b92-a8da-83096978ebb2 + - 3a253991-1872-434f-9898-399724b7b0bc status: 200 OK code: 200 - duration: 58.543594ms + duration: 61.955668ms - id: 70 request: proto: HTTP/1.1 @@ -3449,7 +3449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3457,20 +3457,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:52 GMT + - Thu, 17 Oct 2024 08:54:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3478,10 +3478,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9acb4d55-ec7a-4684-80ec-27157b8f33cc + - 9b589c0f-f180-4641-9b36-1016eb706d8b status: 200 OK code: 200 - duration: 66.359394ms + duration: 89.541165ms - id: 71 request: proto: HTTP/1.1 @@ -3498,7 +3498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3506,20 +3506,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:57 GMT + - Thu, 17 Oct 2024 08:55:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3527,10 +3527,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eac18557-4daf-41c0-b5ce-6f5318703ae7 + - f81c79e8-e3e2-4c92-8c49-333558352a86 status: 200 OK code: 200 - duration: 76.35044ms + duration: 68.600262ms - id: 72 request: proto: HTTP/1.1 @@ -3547,7 +3547,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3555,20 +3555,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:02 GMT + - Thu, 17 Oct 2024 08:55:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3576,10 +3576,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 646dba65-d306-4e60-9fe3-36655d42061f + - f9dc815a-ce3f-459b-bcbb-596899c64b6a status: 200 OK code: 200 - duration: 62.284332ms + duration: 70.991904ms - id: 73 request: proto: HTTP/1.1 @@ -3596,7 +3596,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3604,20 +3604,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:07 GMT + - Thu, 17 Oct 2024 08:55:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3625,10 +3625,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c072cae4-efcb-4fad-831a-26d52794ed11 + - 504efe4c-fc10-448d-8b67-38182b70e9b9 status: 200 OK code: 200 - duration: 56.815023ms + duration: 79.037358ms - id: 74 request: proto: HTTP/1.1 @@ -3645,7 +3645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3653,20 +3653,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:12 GMT + - Thu, 17 Oct 2024 08:55:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3674,10 +3674,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6f74942-3651-4462-950c-55c5531fe96b + - 3d55a7f5-75c9-46cd-bdf0-ca55302d3d7a status: 200 OK code: 200 - duration: 59.941601ms + duration: 92.825552ms - id: 75 request: proto: HTTP/1.1 @@ -3694,7 +3694,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3702,20 +3702,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:17 GMT + - Thu, 17 Oct 2024 08:55:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3723,10 +3723,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 985b59cc-e0db-4a05-aeb6-bee3a2a11c8e + - 8b0558b8-4774-4238-bdec-7ef35d7f909a status: 200 OK code: 200 - duration: 85.108764ms + duration: 76.955486ms - id: 76 request: proto: HTTP/1.1 @@ -3743,7 +3743,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3751,20 +3751,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:23 GMT + - Thu, 17 Oct 2024 08:55:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3772,10 +3772,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c523e333-11e9-4b63-8d6e-a4a9ec2fe7db + - 153d6806-dac1-4a27-a99b-8950a72ea051 status: 200 OK code: 200 - duration: 251.106249ms + duration: 64.635312ms - id: 77 request: proto: HTTP/1.1 @@ -3792,7 +3792,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3800,20 +3800,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:28 GMT + - Thu, 17 Oct 2024 08:55:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3821,10 +3821,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa24c869-06d2-45e3-96ac-003dfd5e1a75 + - 9f647f07-3673-4f42-8098-f9dda5c0babd status: 200 OK code: 200 - duration: 49.070324ms + duration: 70.088921ms - id: 78 request: proto: HTTP/1.1 @@ -3841,7 +3841,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3849,20 +3849,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:33 GMT + - Thu, 17 Oct 2024 08:55:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3870,10 +3870,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6385e768-9a2c-4a1d-bdd7-ea7284cdee03 + - cd1e9cc9-6cb7-41f8-94b4-5b1cfdb296da status: 200 OK code: 200 - duration: 64.109605ms + duration: 70.138379ms - id: 79 request: proto: HTTP/1.1 @@ -3890,7 +3890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3898,20 +3898,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:38 GMT + - Thu, 17 Oct 2024 08:55:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3919,10 +3919,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e20e2ce4-d050-42ea-8e72-86514dc1f443 + - ab96ddb2-dd10-4b11-839d-ea49b75b601a status: 200 OK code: 200 - duration: 70.498072ms + duration: 75.852071ms - id: 80 request: proto: HTTP/1.1 @@ -3939,7 +3939,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3947,20 +3947,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:43 GMT + - Thu, 17 Oct 2024 08:55:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3968,10 +3968,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2968b70d-b8e0-4c77-a1e8-94aacfa83c21 + - 8633bb74-30b9-42e1-8483-ef4ab4925436 status: 200 OK code: 200 - duration: 56.580411ms + duration: 75.664174ms - id: 81 request: proto: HTTP/1.1 @@ -3988,7 +3988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -3996,20 +3996,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:48 GMT + - Thu, 17 Oct 2024 08:55:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4017,10 +4017,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f09872a-e963-4061-807f-e0f376145fed + - f13b276e-ac6a-4e86-9c27-4f9161298f0a status: 200 OK code: 200 - duration: 65.731685ms + duration: 80.470333ms - id: 82 request: proto: HTTP/1.1 @@ -4037,7 +4037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4045,20 +4045,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:53 GMT + - Thu, 17 Oct 2024 08:55:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4066,10 +4066,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 163cb36b-e1ad-4fee-9eec-7ab013b738ee + - 08b5e8c5-81e1-40a3-a3b2-ba24efb15316 status: 200 OK code: 200 - duration: 59.383833ms + duration: 83.109024ms - id: 83 request: proto: HTTP/1.1 @@ -4086,7 +4086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4094,20 +4094,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:58 GMT + - Thu, 17 Oct 2024 08:56:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4115,10 +4115,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0305643-9621-42b9-a268-41314f049ea8 + - f4f66889-86d6-4942-a8e9-d3e523bf5b20 status: 200 OK code: 200 - duration: 74.365404ms + duration: 82.72211ms - id: 84 request: proto: HTTP/1.1 @@ -4135,7 +4135,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4143,20 +4143,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:03 GMT + - Thu, 17 Oct 2024 08:56:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4164,48 +4164,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2836ba73-c0cf-4375-918b-7ebb69e2abc9 + - 3e95ce68-ed56-43a1-b859-81c859241641 status: 200 OK code: 200 - duration: 53.238157ms + duration: 45.595125ms - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 60 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 378 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:08 GMT + - Thu, 17 Oct 2024 08:56:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4213,10 +4215,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bfce436-4d9d-4e08-a3e9-5ef02495da7c + - 27cc0c1b-b2e5-45c7-a317-a9f93c385ce0 status: 200 OK code: 200 - duration: 72.263478ms + duration: 181.29454ms - id: 86 request: proto: HTTP/1.1 @@ -4233,7 +4235,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4241,20 +4243,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 411 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "533" + - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:13 GMT + - Thu, 17 Oct 2024 08:56:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4262,10 +4264,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c9b9a6b-f745-468e-be4c-74fd80f3baa2 + - e505917a-a54d-4a37-b31b-44485891d655 status: 200 OK code: 200 - duration: 79.604792ms + duration: 78.149456ms - id: 87 request: proto: HTTP/1.1 @@ -4282,7 +4284,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4290,20 +4292,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 411 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "533" + - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:18 GMT + - Thu, 17 Oct 2024 08:56:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4311,10 +4313,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ec65610-9c10-4464-bd73-d3f4e667030d + - 9a7083ba-5b08-4b4b-841a-a9c0b520b7b0 status: 200 OK code: 200 - duration: 76.345261ms + duration: 84.609158ms - id: 88 request: proto: HTTP/1.1 @@ -4331,7 +4333,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4339,20 +4341,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 442 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:56:03.075971Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "533" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:23 GMT + - Thu, 17 Oct 2024 08:56:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4360,10 +4362,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b0f02fb-6732-47b4-960f-a3b0d65d13bb + - 5c548eac-275c-4f13-8f67-5eb9fee6a979 status: 200 OK code: 200 - duration: 70.393713ms + duration: 79.382629ms - id: 89 request: proto: HTTP/1.1 @@ -4380,7 +4382,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4388,20 +4390,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 442 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:56:03.075971Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "533" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:28 GMT + - Thu, 17 Oct 2024 08:56:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4409,10 +4411,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e481c37-7a4a-4bfe-ae28-8cc1297263fa + - 4aa1cc0d-d679-40d2-b367-8e76b27c60ee status: 200 OK code: 200 - duration: 68.848678ms + duration: 29.152308ms - id: 90 request: proto: HTTP/1.1 @@ -4429,7 +4431,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4437,20 +4439,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:34 GMT + - Thu, 17 Oct 2024 08:56:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4458,10 +4460,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b17c051c-15eb-44fa-81ca-d108db938dcb + - 1c047019-eae2-4ca4-97ad-36ee4e4a5221 status: 200 OK code: 200 - duration: 74.842504ms + duration: 64.156791ms - id: 91 request: proto: HTTP/1.1 @@ -4478,7 +4480,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -4486,20 +4488,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 442 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:56:03.075971Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "533" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:39 GMT + - Thu, 17 Oct 2024 08:56:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4507,10 +4509,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acb39d8e-01c3-4de5-9673-cbaf030c62c9 + - be2c2e78-c6b5-43fc-a250-5ac63e3a5b48 status: 200 OK code: 200 - duration: 63.709742ms + duration: 32.071977ms - id: 92 request: proto: HTTP/1.1 @@ -4527,28 +4529,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/2e03d6be-e7ac-4768-a872-f27136749ca9 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 412 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-17T08:56:14.149828Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:44 GMT + - Thu, 17 Oct 2024 08:56:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4556,10 +4558,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae62d72f-d331-4f71-908f-26a5fb2f1c64 + - b526ace5-7a49-4807-b141-fd9fe474019b status: 200 OK code: 200 - duration: 79.039036ms + duration: 118.893242ms - id: 93 request: proto: HTTP/1.1 @@ -4576,7 +4578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4584,20 +4586,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:49 GMT + - Thu, 17 Oct 2024 08:56:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4605,10 +4607,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65882a5b-6e45-44b3-a3fb-121b66fe17b4 + - 80d4c7a6-f06c-4ed4-8e7d-c1c30d7a4e9b status: 200 OK code: 200 - duration: 56.154533ms + duration: 71.097888ms - id: 94 request: proto: HTTP/1.1 @@ -4625,28 +4627,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:54 GMT + - Thu, 17 Oct 2024 08:56:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4654,10 +4656,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13f5c4c6-8c5e-43eb-8cda-1617b1343af3 + - afc404cf-2223-47df-84e1-041e4035ccbe status: 200 OK code: 200 - duration: 56.167712ms + duration: 153.210901ms - id: 95 request: proto: HTTP/1.1 @@ -4674,7 +4676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4682,20 +4684,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:59 GMT + - Thu, 17 Oct 2024 08:56:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4703,10 +4705,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15236665-38d7-49d7-b459-630ec05be387 + - c0a741ee-ce9b-4b9e-b66a-6028850fd85f status: 200 OK code: 200 - duration: 65.674972ms + duration: 60.716179ms - id: 96 request: proto: HTTP/1.1 @@ -4723,7 +4725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4731,20 +4733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:04 GMT + - Thu, 17 Oct 2024 08:56:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4752,10 +4754,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b83aa75-7115-4894-bb18-2f36500d417c + - d48c3e71-27cc-4155-addf-f34f70b7e2bd status: 200 OK code: 200 - duration: 62.655389ms + duration: 81.086696ms - id: 97 request: proto: HTTP/1.1 @@ -4772,7 +4774,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4780,20 +4782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:09 GMT + - Thu, 17 Oct 2024 08:56:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4801,10 +4803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a108ba05-3101-43fd-bf04-b8ed90cc8436 + - 8bd287b6-de95-4fef-8b1d-524bcf042669 status: 200 OK code: 200 - duration: 66.310034ms + duration: 78.354855ms - id: 98 request: proto: HTTP/1.1 @@ -4821,7 +4823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4829,20 +4831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:14 GMT + - Thu, 17 Oct 2024 08:56:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4850,10 +4852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61119939-044f-4bf0-928e-f6f542c8ec57 + - 468018d8-c5a6-479f-b499-4fbf68df3ac2 status: 200 OK code: 200 - duration: 66.602393ms + duration: 68.303536ms - id: 99 request: proto: HTTP/1.1 @@ -4870,7 +4872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4878,20 +4880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:19 GMT + - Thu, 17 Oct 2024 08:56:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4899,10 +4901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faf77801-0c9d-49c4-862f-b47cef6d68a6 + - 14f9f5e5-bf65-4d69-b3b0-7b5f9e16ed06 status: 200 OK code: 200 - duration: 51.032229ms + duration: 70.689519ms - id: 100 request: proto: HTTP/1.1 @@ -4919,7 +4921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4927,20 +4929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:24 GMT + - Thu, 17 Oct 2024 08:56:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4948,10 +4950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91ef982a-5046-468a-badd-8d593dac28ee + - 1f6a3ce0-d736-4507-8e1d-655a131ce481 status: 200 OK code: 200 - duration: 73.13731ms + duration: 58.360558ms - id: 101 request: proto: HTTP/1.1 @@ -4968,7 +4970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -4976,20 +4978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:29 GMT + - Thu, 17 Oct 2024 08:56:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4997,10 +4999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be89be26-d1d7-4a8f-9c18-f32f10568b3b + - 69087843-c570-4073-9090-a164a2050873 status: 200 OK code: 200 - duration: 68.873579ms + duration: 84.699773ms - id: 102 request: proto: HTTP/1.1 @@ -5017,7 +5019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -5025,20 +5027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:34 GMT + - Thu, 17 Oct 2024 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5046,10 +5048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5e4addf-8ef9-4a9a-8e33-26a4397aba66 + - 8b7ee01b-1336-4ffe-a716-a790b3d4c8da status: 200 OK code: 200 - duration: 67.088711ms + duration: 66.245005ms - id: 103 request: proto: HTTP/1.1 @@ -5066,7 +5068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a method: GET response: proto: HTTP/2.0 @@ -5074,20 +5076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 129 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","type":"not_found"}' headers: Content-Length: - - "533" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:39 GMT + - Thu, 17 Oct 2024 08:56:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5095,10 +5097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b09fe286-3388-468e-99d5-bddc0997444a - status: 200 OK - code: 200 - duration: 58.775572ms + - 7cb653a0-f200-4ad1-860e-108f1439db33 + status: 404 Not Found + code: 404 + duration: 25.823508ms - id: 104 request: proto: HTTP/1.1 @@ -5115,4664 +5117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:27:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5a42ff57-7332-4b3a-87ae-2fd861fa46be - status: 200 OK - code: 200 - duration: 63.116381ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:27:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 406b1180-e2b6-4d40-9322-a798a638d85e - status: 200 OK - code: 200 - duration: 167.152132ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:27:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e642a4f7-da30-4c17-b501-159f80907139 - status: 200 OK - code: 200 - duration: 71.431224ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b211754a-ed99-4c3b-a1e5-7c9dc78e53f4 - status: 200 OK - code: 200 - duration: 64.653068ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63764d02-e645-4cb9-9223-1fcb02122e8c - status: 200 OK - code: 200 - duration: 71.084941ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3862e520-88c6-4d4c-a3fd-2df23437b047 - status: 200 OK - code: 200 - duration: 81.4976ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 141aeb64-eb93-48e8-8c30-9210a8f3970e - status: 200 OK - code: 200 - duration: 64.593297ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9549a571-e6c3-4a56-9326-365b3ff320c9 - status: 200 OK - code: 200 - duration: 65.344968ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 154390fc-a60a-4dec-ba5d-ca3edb3d1858 - status: 200 OK - code: 200 - duration: 71.008059ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 90686dd0-b00d-4a44-b14d-aacd1c848c56 - status: 200 OK - code: 200 - duration: 72.024508ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c1575181-1c67-4eda-8405-cc38401873cb - status: 200 OK - code: 200 - duration: 82.747936ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a9a9672-57c4-47b6-8a4a-deec0ecb74d6 - status: 200 OK - code: 200 - duration: 67.357399ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 97633a40-7eb5-44ce-afeb-434893f57fa4 - status: 200 OK - code: 200 - duration: 72.374889ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 82daa383-5e6f-435e-81f9-fdf1a23f7ac6 - status: 200 OK - code: 200 - duration: 64.897294ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:28:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1d924130-b345-47da-b3a9-d9200e8be19e - status: 200 OK - code: 200 - duration: 66.748444ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63df7ae7-30db-49ff-aef9-ec02fb46f67c - status: 200 OK - code: 200 - duration: 63.387772ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 411dc1f3-979d-4ff1-88ce-674afe78b027 - status: 200 OK - code: 200 - duration: 72.690719ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3fd34ed9-8932-4f44-a8de-bb7ff1898614 - status: 200 OK - code: 200 - duration: 69.232448ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b31422bd-0acf-4b83-9ed2-d8404c09a56c - status: 200 OK - code: 200 - duration: 64.623863ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3d3969e3-f3e8-4832-bf4d-e9fccc56885c - status: 200 OK - code: 200 - duration: 72.214073ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bf9b31f4-8a1b-495c-85ee-a3735ffd3f71 - status: 200 OK - code: 200 - duration: 80.734094ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1392fc11-d828-4ccc-9d1b-50848265b339 - status: 200 OK - code: 200 - duration: 69.206538ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9e2eab3e-7354-4b32-b544-b6b8c29849c0 - status: 200 OK - code: 200 - duration: 63.172776ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1aa2e182-5849-44c3-a80b-c29695b2d9a6 - status: 200 OK - code: 200 - duration: 74.811008ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8bd98b73-8e9e-4477-9d69-6ae94119fd6e - status: 200 OK - code: 200 - duration: 71.753727ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e2e6ae46-f6dc-4456-9003-d32e3b4c5f2e - status: 200 OK - code: 200 - duration: 46.359128ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 564ebdf0-2d32-4c53-84ac-8d3aeb5394f8 - status: 200 OK - code: 200 - duration: 143.470019ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 60 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 376 - uncompressed: false - body: '{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' - headers: - Content-Length: - - "376" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d6994304-33d2-47cd-ada8-b4502e950b57 - status: 200 OK - code: 200 - duration: 162.043662ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 409 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "409" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2b05fea3-cc2c-4e90-b9d5-159dbb516a4c - status: 200 OK - code: 200 - duration: 179.742202ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 409 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "409" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ece5a3f-2290-42af-906f-d079bdc2d9ac - status: 200 OK - code: 200 - duration: 26.696144ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T14:29:53.001721Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "440" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d0baec7-49a1-4b54-9dfa-de59d839652a - status: 200 OK - code: 200 - duration: 70.75557ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T14:29:53.001721Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "440" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eaede18e-225c-462b-9922-616cc78c5bad - status: 200 OK - code: 200 - duration: 62.713075ms - - id: 136 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c68d39f-cdcb-42f1-b9f0-5e178e71c812 - status: 200 OK - code: 200 - duration: 80.688241ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 440 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T14:29:53.001721Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "440" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 802675e7-d6db-46dc-b386-94b4f222454d - status: 200 OK - code: 200 - duration: 36.595368ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3fd32b2f-8fa8-4600-a54e-d1158988cd0a - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 410 - uncompressed: false - body: '{"created_at":"2024-10-14T14:29:51.991640Z","expires_at":"2024-12-31T23:59:59Z","id":"3fd32b2f-8fa8-4600-a54e-d1158988cd0a","instance_id":"b834f146-16ee-4130-be00-4709d4ac4a22","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-pro2-xxs","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-14T14:30:03.889810Z","volume_type":{"type":"sbs_5k"}}' - headers: - Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a4f50054-30d3-4a8c-b03c-b15c372fba35 - status: 200 OK - code: 200 - duration: 142.839054ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d3cf809-13b0-4e9b-a8ca-8e7856c03878 - status: 200 OK - code: 200 - duration: 62.499962ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c10a029-d67c-4b41-a240-0b84278e14cf - status: 200 OK - code: 200 - duration: 106.42744ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 196c8cbf-3570-4143-902c-076c83255a69 - status: 200 OK - code: 200 - duration: 26.09181ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5b257100-f36e-479e-b6e2-2ccd5300090d - status: 200 OK - code: 200 - duration: 67.926449ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b2b8572-3470-4192-b793-a9f189961ccc - status: 200 OK - code: 200 - duration: 288.613062ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 79ddea56-c746-4d58-b175-2213bf07b605 - status: 200 OK - code: 200 - duration: 65.688942ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b80cf9c-cc80-47fe-b63f-7294710ed5a7 - status: 200 OK - code: 200 - duration: 62.134126ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1a7265ed-1df7-458c-b7f6-b15ca764b98b - status: 200 OK - code: 200 - duration: 72.680445ms - - id: 147 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b90af720-e4fb-4bb2-bf22-447742c5a653 - status: 200 OK - code: 200 - duration: 63.366103ms - - id: 148 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5cb56025-fad5-414d-b8ca-9ad7cd57e41c - status: 200 OK - code: 200 - duration: 69.683634ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cc4fa3e8-9c82-4a8d-9447-548a088a15e7 - status: 200 OK - code: 200 - duration: 55.424499ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7e4d5aa3-11f7-4c49-a601-624f1da7a63e - status: 200 OK - code: 200 - duration: 71.011564ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a77e926b-dce2-4dc7-aa93-59229e108a05 - status: 200 OK - code: 200 - duration: 70.075137ms - - id: 152 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 73312ad3-c439-44b8-a5c9-b252de6c477a - status: 200 OK - code: 200 - duration: 65.066711ms - - id: 153 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8d5c8293-e17b-4620-b579-7416b59c18cb - status: 200 OK - code: 200 - duration: 61.62201ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 510936b5-c141-4baa-9c61-54462217ecea - status: 200 OK - code: 200 - duration: 67.474611ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 36598d32-002e-4a0a-9444-0bf1957bebdd - status: 200 OK - code: 200 - duration: 64.377328ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6aef2d5e-24f1-46a2-b86c-a2d3064e1e06 - status: 200 OK - code: 200 - duration: 59.628505ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1872164a-08ef-412a-917b-1e253b682721 - status: 200 OK - code: 200 - duration: 70.765317ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6b6646f3-62c4-4d5d-8ec6-3705d5c39494 - status: 200 OK - code: 200 - duration: 79.326492ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30e3ec9c-26b8-4e59-88df-d32abf007db9 - status: 200 OK - code: 200 - duration: 63.609688ms - - id: 160 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 07025fd7-1b86-4fc2-ba16-7919f525a57e - status: 200 OK - code: 200 - duration: 62.837663ms - - id: 161 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3cd8b7b9-f492-481d-848d-83f80bd3451b - status: 200 OK - code: 200 - duration: 70.113133ms - - id: 162 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 78f8a31e-cc03-413e-aa1f-c662a10ee8ff - status: 200 OK - code: 200 - duration: 60.518067ms - - id: 163 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 694e6160-cf71-4e2c-9080-73b97c7ea456 - status: 200 OK - code: 200 - duration: 73.117426ms - - id: 164 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f7a17fe4-0b5d-4598-b169-e96301b7545d - status: 200 OK - code: 200 - duration: 73.095127ms - - id: 165 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5ff8612d-3a92-4f01-a688-27ea9b0f182d - status: 200 OK - code: 200 - duration: 63.797145ms - - id: 166 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6eaa554c-5974-4db2-a69c-ca1ac3f55dbf - status: 200 OK - code: 200 - duration: 87.601427ms - - id: 167 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d45735ba-5dda-46e5-a1ea-42a9118fda0d - status: 200 OK - code: 200 - duration: 66.485481ms - - id: 168 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 68d19c48-153f-4da7-ad1e-d88608b7b477 - status: 200 OK - code: 200 - duration: 61.755672ms - - id: 169 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 56d34b89-5b13-4855-b531-b98588dd08a2 - status: 200 OK - code: 200 - duration: 72.076136ms - - id: 170 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 272383c1-d695-4aa0-8ea4-c06bf1920c4c - status: 200 OK - code: 200 - duration: 61.576928ms - - id: 171 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 06d979d6-b33c-4987-971e-b0630c4a9995 - status: 200 OK - code: 200 - duration: 53.422377ms - - id: 172 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3ccd5f98-5c2b-4c8b-94af-4a6127842a55 - status: 200 OK - code: 200 - duration: 62.154357ms - - id: 173 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e5d6e15a-5de6-4565-af7f-d5951c3e173f - status: 200 OK - code: 200 - duration: 91.861759ms - - id: 174 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - addfbb21-0c51-43eb-99a3-5ea4d109511c - status: 200 OK - code: 200 - duration: 58.92211ms - - id: 175 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 676b489a-6f45-4dee-a988-e424ba386850 - status: 200 OK - code: 200 - duration: 84.324472ms - - id: 176 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 621a93b9-15df-47b2-8442-c7c9e346904b - status: 200 OK - code: 200 - duration: 80.724615ms - - id: 177 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 61d1eaf3-3e14-48a7-a436-76f53eecb734 - status: 200 OK - code: 200 - duration: 61.928533ms - - id: 178 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 43354d79-d1da-4b05-a595-3cb8c9b509a4 - status: 200 OK - code: 200 - duration: 49.734354ms - - id: 179 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb2e8a76-8eb9-4154-9aaa-a85b4d39dece - status: 200 OK - code: 200 - duration: 53.289192ms - - id: 180 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cb63088e-6c62-4d69-a5ca-2a4c1a5554f2 - status: 200 OK - code: 200 - duration: 61.722118ms - - id: 181 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 85c43f40-1df5-40ac-acec-09262f85da94 - status: 200 OK - code: 200 - duration: 67.525409ms - - id: 182 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da89e7f7-613d-4e86-8da8-bbac8ddc7d8c - status: 200 OK - code: 200 - duration: 63.412791ms - - id: 183 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b310829c-82d7-4420-89f0-241367a6608b - status: 200 OK - code: 200 - duration: 85.213308ms - - id: 184 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c64d2dde-5c4a-403e-b5ae-8e45401b7c75 - status: 200 OK - code: 200 - duration: 69.199925ms - - id: 185 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9fd7c67-4703-47ca-ad18-8b5ef6c7d364 - status: 200 OK - code: 200 - duration: 78.965832ms - - id: 186 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7cd76e7-eb1e-454e-98dd-db2d6cbe5443 - status: 200 OK - code: 200 - duration: 48.029293ms - - id: 187 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:33:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b7ed4a0c-413a-4f16-b900-aff731eedce6 - status: 200 OK - code: 200 - duration: 38.221895ms - - id: 188 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ba380b6-5eba-4252-b05f-6639fc55da6c - status: 200 OK - code: 200 - duration: 46.55207ms - - id: 189 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aba68b02-d1a3-4972-8e2a-41da9c9b9f85 - status: 200 OK - code: 200 - duration: 128.29748ms - - id: 190 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d7d2043-138d-459a-8a7d-7bef4107b994 - status: 200 OK - code: 200 - duration: 64.623061ms - - id: 191 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5ec90a9d-d98b-4c56-9647-5fc73d5e2157 - status: 200 OK - code: 200 - duration: 80.528209ms - - id: 192 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 77989cd0-dfa7-4d7c-b857-1954234a1d5c - status: 200 OK - code: 200 - duration: 71.185348ms - - id: 193 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 45da7da1-6656-49a6-b676-a40424dbecfb - status: 200 OK - code: 200 - duration: 76.395722ms - - id: 194 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dd98afa6-be47-4632-adee-5a1debaa5b59 - status: 200 OK - code: 200 - duration: 57.219664ms - - id: 195 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8b5fb23-137e-4ea4-89d9-af94e7b1fc7f - status: 200 OK - code: 200 - duration: 59.509196ms - - id: 196 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ca9adb8c-7014-40ce-8d04-539a73bc9791 - status: 200 OK - code: 200 - duration: 79.279322ms - - id: 197 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 529 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:02.145372Z","endpoints":[{"dns_records":["b834f146-16ee-4130-be00-4709d4ac4a22.mgdb.fr-par.scw.cloud"],"id":"7e96f359-3233-4775-8297-95d97b9fa496","ips":[],"port":27017,"public":{}}],"id":"b834f146-16ee-4130-be00-4709d4ac4a22","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-pro2-xxs","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "529" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 54407eb9-184b-4da3-8a86-8fd57abce0bd - status: 200 OK - code: 200 - duration: 71.73703ms - - id: 198 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/b834f146-16ee-4130-be00-4709d4ac4a22 - 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":"b834f146-16ee-4130-be00-4709d4ac4a22","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:34:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a1e7478-2acb-4c51-a1c4-d789947cc6ef - status: 404 Not Found - code: 404 - duration: 34.396434ms - - id: 199 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=b834f146-16ee-4130-be00-4709d4ac4a22&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -9791,9 +5136,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:53 GMT + - Thu, 17 Oct 2024 08:56:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9801,7 +5146,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0199675e-e870-4cc1-a9ea-cbdc0ba37caf + - b7639cd9-f078-4a28-8938-442610f00c49 status: 200 OK code: 200 - duration: 53.964913ms + duration: 76.136837ms diff --git a/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml index 1cc8706faa..141ccadb52 100644 --- a/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:42:58 GMT + - Thu, 17 Oct 2024 08:21:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8950c1f7-1277-45b7-aa69-1ee9b6468bc7 + - c11807b6-6191-4877-a4ad-ba54ecb2d275 status: 200 OK code: 200 - duration: 572.648433ms + duration: 1.110495268s - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:42:58 GMT + - Thu, 17 Oct 2024 08:21:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2264d5da-8ae4-4851-b38b-c74b99853039 + - 9487a5b9-eb21-4f30-b39b-39be2c00927e status: 200 OK code: 200 - duration: 80.583227ms + duration: 63.624461ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:03 GMT + - Thu, 17 Oct 2024 08:21:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f73bdac-60dc-4598-9fd4-53c626f11b75 + - acb42ab7-36db-4f98-8fbb-b13917f302f4 status: 200 OK code: 200 - duration: 95.768345ms + duration: 75.280215ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:08 GMT + - Thu, 17 Oct 2024 08:21:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0837d7b7-afb4-4ec6-b547-a5131909119f + - a175724a-60fa-4232-9a7e-4b8e469f3f0f status: 200 OK code: 200 - duration: 91.033495ms + duration: 146.310843ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:13 GMT + - Thu, 17 Oct 2024 08:21:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c43db51-232e-4eb9-91a8-a54a104fc397 + - 39b07755-197e-4b58-8a97-5185aa1ab696 status: 200 OK code: 200 - duration: 67.916624ms + duration: 67.338936ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -274,7 +274,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -283,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:18 GMT + - Thu, 17 Oct 2024 08:22:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e047045b-53fb-4343-bbc2-75a15f5a28e3 + - 474e7584-6f69-44f3-95e7-28efbc002f49 status: 200 OK code: 200 - duration: 66.36191ms + duration: 68.080699ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:23 GMT + - Thu, 17 Oct 2024 08:22:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef016c10-8cf5-4017-aa60-04ba5a92b10d + - c190700d-bc00-43b3-ab28-c8dc0ed90906 status: 200 OK code: 200 - duration: 84.632543ms + duration: 57.90128ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:28 GMT + - Thu, 17 Oct 2024 08:22:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c225988e-512e-48c0-9e96-4420e936ee3b + - cc4c89b2-7b75-4f02-8a71-69458a577aff status: 200 OK code: 200 - duration: 66.015286ms + duration: 62.952032ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:33 GMT + - Thu, 17 Oct 2024 08:22:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d127f68c-6d2a-4abc-8e91-36e3b2ef6487 + - fbab9ab7-5260-4767-98cd-3cac5d89b9af status: 200 OK code: 200 - duration: 73.507072ms + duration: 67.536929ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:38 GMT + - Thu, 17 Oct 2024 08:22:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee247318-0a2c-4a26-8266-ffba81cddf1e + - 5f87c14c-0770-4799-a46d-209ce7ba5d01 status: 200 OK code: 200 - duration: 74.133661ms + duration: 87.578971ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:43 GMT + - Thu, 17 Oct 2024 08:22:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f16bba58-2267-41d0-b76d-1f30ca3ffda6 + - d4208522-7d7e-46c7-b9b6-8bf534a75337 status: 200 OK code: 200 - duration: 68.748284ms + duration: 77.602742ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -568,7 +568,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -577,9 +577,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:48 GMT + - Thu, 17 Oct 2024 08:22:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a13d74d-2f0f-4225-a472-1bd758f60163 + - ba01eceb-adee-457e-a559-5b3a293d7237 status: 200 OK code: 200 - duration: 75.70689ms + duration: 76.417931ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -617,7 +617,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -626,9 +626,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:53 GMT + - Thu, 17 Oct 2024 08:22:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bb723dc-3a00-46d7-8f90-d78faab29f03 + - 34248500-5f5e-4e52-8467-7612cd0c1659 status: 200 OK code: 200 - duration: 60.749129ms + duration: 71.396904ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -666,7 +666,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -675,9 +675,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:43:59 GMT + - Thu, 17 Oct 2024 08:22:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9d1515c-bb1e-4a10-b9ee-27d1cc39cf1c + - 99195a55-c2cd-45d9-b11c-80d0cbae7a67 status: 200 OK code: 200 - duration: 74.298487ms + duration: 74.004704ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -724,9 +724,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:04 GMT + - Thu, 17 Oct 2024 08:22:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a413f6a6-e940-4c2a-bd99-5e9f93631ae1 + - f06c1aa4-f86b-4f64-a222-3dbd34f3b2d3 status: 200 OK code: 200 - duration: 72.817121ms + duration: 76.765504ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -773,9 +773,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:09 GMT + - Thu, 17 Oct 2024 08:22:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05d77241-edb8-4067-a92a-f691c07963db + - e9a18a14-ebb6-4441-bd9b-5676c119af9f status: 200 OK code: 200 - duration: 70.04666ms + duration: 445.948006ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -813,7 +813,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -822,9 +822,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:14 GMT + - Thu, 17 Oct 2024 08:22:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a278dfd9-dcbc-47ac-8733-65f3343b8afd + - 936f6614-1bbb-4b7e-b27d-7ef508bcdb8e status: 200 OK code: 200 - duration: 67.587022ms + duration: 28.758932ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -862,7 +862,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -871,9 +871,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:19 GMT + - Thu, 17 Oct 2024 08:23:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77f87dd6-baef-4796-97b4-b4a6b040a257 + - 63a27277-70fc-4725-9e4b-e9fdb354b164 status: 200 OK code: 200 - duration: 66.154506ms + duration: 69.716269ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -911,7 +911,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -920,9 +920,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:24 GMT + - Thu, 17 Oct 2024 08:23:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b644935c-8dff-44af-b349-ee4e9c0e90e9 + - a004e175-504a-4f0e-ae4e-329c438e82fc status: 200 OK code: 200 - duration: 66.078636ms + duration: 67.890178ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -960,7 +960,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -969,9 +969,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:29 GMT + - Thu, 17 Oct 2024 08:23:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83283cee-d49d-42c7-8307-3b9a4a83064b + - 9522bf72-c9c1-457e-ae73-857f14dda653 status: 200 OK code: 200 - duration: 78.640395ms + duration: 71.991867ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1009,7 +1009,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1018,9 +1018,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:34 GMT + - Thu, 17 Oct 2024 08:23:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9a73080-5c60-442d-be1a-30b7c35ccbf4 + - b75c883d-f6c1-4c86-a947-b640d3c630dd status: 200 OK code: 200 - duration: 82.511895ms + duration: 68.905575ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1067,9 +1067,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:39 GMT + - Thu, 17 Oct 2024 08:23:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46ff60c3-9401-415a-9d6d-13f4fd10081e + - 3782bb64-a6a0-4052-86ae-69d228d6652d status: 200 OK code: 200 - duration: 71.823901ms + duration: 21.347934ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1107,7 +1107,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1116,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:44 GMT + - Thu, 17 Oct 2024 08:23:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfae471f-8688-4cdb-b09e-b23a6efdca9d + - f39d4513-f627-42e7-8ed3-69fe34cc47b2 status: 200 OK code: 200 - duration: 78.023341ms + duration: 33.350662ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1156,7 +1156,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1165,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:49 GMT + - Thu, 17 Oct 2024 08:23:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0da3cbd-abf2-4201-9d96-77a9de2c0b94 + - 76846c11-d7b3-4563-ab0b-0bb969771158 status: 200 OK code: 200 - duration: 72.694882ms + duration: 37.322698ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1205,7 +1205,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1214,9 +1214,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:54 GMT + - Thu, 17 Oct 2024 08:23:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ce40dd8-a5cd-4a8f-bd1f-83bd07526964 + - 0cb32738-024e-4961-aa60-ce70b86cddd5 status: 200 OK code: 200 - duration: 67.670739ms + duration: 43.856412ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1254,7 +1254,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1263,9 +1263,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:44:59 GMT + - Thu, 17 Oct 2024 08:23:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47625e10-62ba-459c-a47e-2afe72383608 + - 076f130a-9958-4a25-a894-dcd5e8990fc9 status: 200 OK code: 200 - duration: 80.689781ms + duration: 68.740591ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1303,7 +1303,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1312,9 +1312,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:04 GMT + - Thu, 17 Oct 2024 08:23:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed562adc-d4ec-4bd7-b5f8-6dc8643e065e + - 692ce8d9-d59c-4e5b-a517-03b45bfb88b8 status: 200 OK code: 200 - duration: 73.883012ms + duration: 72.505321ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1352,7 +1352,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1361,9 +1361,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:10 GMT + - Thu, 17 Oct 2024 08:23:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51026904-12c9-407d-b8e5-da3487b0ac53 + - d4fc60f7-8ec2-4a4f-b11a-8d1c29585cd2 status: 200 OK code: 200 - duration: 64.033213ms + duration: 80.390856ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1401,7 +1401,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1410,9 +1410,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:15 GMT + - Thu, 17 Oct 2024 08:23:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6344906d-33cb-46d8-bfd7-b98840e9327d + - 01e94a31-8399-4859-8414-0bd54fccee8c status: 200 OK code: 200 - duration: 65.570112ms + duration: 69.233993ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1450,7 +1450,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1459,9 +1459,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:20 GMT + - Thu, 17 Oct 2024 08:24:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d43dc0f-0107-4bc9-a371-1be4010aa860 + - 7dc7d198-2a8a-4d1e-931e-b701b24b0069 status: 200 OK code: 200 - duration: 76.302ms + duration: 65.262508ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1499,7 +1499,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1508,9 +1508,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:25 GMT + - Thu, 17 Oct 2024 08:24:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84ec5fb2-0333-4294-803b-280d42e27652 + - 472c73e5-c8f0-4344-90f2-da1e39ac35c6 status: 200 OK code: 200 - duration: 69.493262ms + duration: 82.093392ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1557,9 +1557,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:30 GMT + - Thu, 17 Oct 2024 08:24:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41213a0c-b41d-4a63-8375-911c16389c85 + - 469b723b-b90b-4c9b-807f-e16ccbb1197d status: 200 OK code: 200 - duration: 56.105594ms + duration: 66.371104ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1597,7 +1597,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1606,9 +1606,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:35 GMT + - Thu, 17 Oct 2024 08:24:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24061fe0-f018-4c08-9d5f-d51620268dad + - 2569cada-6f93-4df8-b3ca-22d55c28bebc status: 200 OK code: 200 - duration: 66.343074ms + duration: 74.923932ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1646,7 +1646,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1655,9 +1655,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:40 GMT + - Thu, 17 Oct 2024 08:24:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05238b02-f035-4945-86bb-abc35a3dcb60 + - 0ff05b69-6f82-4bb6-ac5f-e4fc9f64e851 status: 200 OK code: 200 - duration: 62.263546ms + duration: 71.178203ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1695,7 +1695,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1704,9 +1704,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:45 GMT + - Thu, 17 Oct 2024 08:24:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ef2936b-211d-4fa2-8bf8-6fa511146b43 + - 6ef71cb2-5c88-4bc2-837e-0b6aaa6e9526 status: 200 OK code: 200 - duration: 311.451316ms + duration: 72.351082ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1744,7 +1744,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1753,9 +1753,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:50 GMT + - Thu, 17 Oct 2024 08:24:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01010cc8-ae30-4e90-b31f-6743b3c152f5 + - 8a96efca-e229-4c73-9692-50688b625716 status: 200 OK code: 200 - duration: 60.532715ms + duration: 76.40285ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1793,7 +1793,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1802,9 +1802,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:45:55 GMT + - Thu, 17 Oct 2024 08:24:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2757a50b-f1a7-4572-aeb1-69bc4af8f552 + - 9cdbadad-a9b8-458a-84ae-37be5ba6513f status: 200 OK code: 200 - duration: 65.887927ms + duration: 77.049034ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1842,7 +1842,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1851,9 +1851,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:00 GMT + - Thu, 17 Oct 2024 08:24:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f79cd0a-cbb9-4808-a9ab-0a03a7c84340 + - dddd3f80-e422-402b-a74b-fd9c212c7241 status: 200 OK code: 200 - duration: 62.974995ms + duration: 69.984762ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1891,7 +1891,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1900,9 +1900,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:06 GMT + - Thu, 17 Oct 2024 08:24:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fa90200-717c-493a-8047-591ac80ec0b1 + - 85f9ffb3-c6b8-4561-a252-67e695c6caaa status: 200 OK code: 200 - duration: 76.924991ms + duration: 94.351572ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1940,7 +1940,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1949,9 +1949,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:11 GMT + - Thu, 17 Oct 2024 08:24:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1959,10 +1959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43a21598-f193-4fd8-af9d-30c9d70cf2cd + - 7800465a-960e-4f83-9bba-d01af94f53fe status: 200 OK code: 200 - duration: 71.450878ms + duration: 74.760577ms - id: 40 request: proto: HTTP/1.1 @@ -1979,7 +1979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -1989,7 +1989,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1998,9 +1998,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:16 GMT + - Thu, 17 Oct 2024 08:25:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2008,10 +2008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbbf07c0-b807-47ca-b8a0-895551c0998c + - 5e5b1d17-a7ce-434d-9370-8238d62f83aa status: 200 OK code: 200 - duration: 71.075386ms + duration: 78.835196ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2038,7 +2038,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2047,9 +2047,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:21 GMT + - Thu, 17 Oct 2024 08:25:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,10 +2057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 605db160-3455-49a2-9f08-a321fd48d506 + - ac4a552e-0807-492f-9ef4-3f30b28ef236 status: 200 OK code: 200 - duration: 67.507519ms + duration: 59.990645ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2087,7 +2087,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2096,9 +2096,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:26 GMT + - Thu, 17 Oct 2024 08:25:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2106,10 +2106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43e42fe3-7fb5-4954-8d06-ef337f65d723 + - e713f251-178f-448f-9483-cba0a6f9883a status: 200 OK code: 200 - duration: 84.996773ms + duration: 73.557364ms - id: 43 request: proto: HTTP/1.1 @@ -2126,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2136,7 +2136,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2145,9 +2145,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:31 GMT + - Thu, 17 Oct 2024 08:25:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2155,10 +2155,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f060fadb-d590-4b81-9da5-60f948274c08 + - f62e0ad0-c0b3-486e-bc57-b0790747aa51 status: 200 OK code: 200 - duration: 67.993096ms + duration: 70.40638ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2185,7 +2185,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2194,9 +2194,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:36 GMT + - Thu, 17 Oct 2024 08:25:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2204,10 +2204,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f99b21a-284a-4034-8c6b-db59dac14df0 + - fbce6d16-f75a-4847-a269-9f1db915bceb status: 200 OK code: 200 - duration: 67.596395ms + duration: 76.172152ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2234,7 +2234,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2243,9 +2243,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:41 GMT + - Thu, 17 Oct 2024 08:25:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2253,10 +2253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fc4abb1-289d-4f70-b2c7-f2bcdc4e3726 + - c29d38b4-25fc-4678-a136-e392cb19b763 status: 200 OK code: 200 - duration: 78.863385ms + duration: 59.386255ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2283,7 +2283,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2292,9 +2292,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:46 GMT + - Thu, 17 Oct 2024 08:25:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2302,10 +2302,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 196db20c-3f03-4209-8ec7-89fcd947cf42 + - d6617d5d-cabc-4203-a85f-4c573aa88e3f status: 200 OK code: 200 - duration: 76.525601ms + duration: 71.036494ms - id: 47 request: proto: HTTP/1.1 @@ -2322,7 +2322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2332,7 +2332,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2341,9 +2341,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:51 GMT + - Thu, 17 Oct 2024 08:25:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2351,10 +2351,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbac2bbe-757f-4661-9ff6-20ed24129fa9 + - 5c021009-c30e-43d0-9b5f-05d5e29673be status: 200 OK code: 200 - duration: 66.511582ms + duration: 76.92341ms - id: 48 request: proto: HTTP/1.1 @@ -2371,7 +2371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2381,7 +2381,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2390,9 +2390,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:46:56 GMT + - Thu, 17 Oct 2024 08:25:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2400,10 +2400,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a501f337-8a27-406e-90bf-15d3ef016330 + - b4654b19-eee0-4f36-b7f5-bc32f4c3c6f1 status: 200 OK code: 200 - duration: 61.142514ms + duration: 80.189999ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2430,7 +2430,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2439,9 +2439,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:01 GMT + - Thu, 17 Oct 2024 08:25:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2449,10 +2449,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72d98f13-3fa9-44cd-b68e-a181fb3be24e + - 9d0d3027-767c-49dd-8caf-4258c5cfb299 status: 200 OK code: 200 - duration: 61.509344ms + duration: 63.924619ms - id: 50 request: proto: HTTP/1.1 @@ -2469,7 +2469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2479,7 +2479,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2488,9 +2488,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:06 GMT + - Thu, 17 Oct 2024 08:25:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2498,10 +2498,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d7f0370-86b4-48ab-b0d3-a50f4ff808c2 + - 4d1ebc9f-25cd-4b78-8852-45cab3b22c4b status: 200 OK code: 200 - duration: 84.945303ms + duration: 77.608501ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2528,7 +2528,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2537,9 +2537,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:11 GMT + - Thu, 17 Oct 2024 08:25:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2547,10 +2547,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55b77117-7feb-4ff1-9ca1-e527aec4e7c2 + - 0947a951-9450-44d2-8d15-fb902731ac11 status: 200 OK code: 200 - duration: 67.779704ms + duration: 66.4849ms - id: 52 request: proto: HTTP/1.1 @@ -2567,7 +2567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2577,7 +2577,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2586,9 +2586,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:17 GMT + - Thu, 17 Oct 2024 08:26:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2596,10 +2596,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06aef6e1-94b1-444e-866f-618d50a2f45c + - 5e7a83cc-437d-47da-b1f5-7c0052e7954d status: 200 OK code: 200 - duration: 71.702047ms + duration: 71.91389ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2626,7 +2626,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2635,9 +2635,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:22 GMT + - Thu, 17 Oct 2024 08:26:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2645,10 +2645,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dcf0a57-1b61-4067-bbf5-128f2bb8ea8b + - 75543b8f-d30f-4ec0-b37b-d53bb69e5dde status: 200 OK code: 200 - duration: 113.551227ms + duration: 66.8386ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2675,7 +2675,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2684,9 +2684,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:27 GMT + - Thu, 17 Oct 2024 08:26:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2694,10 +2694,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8de46ed-e45d-4156-bb29-46a65063eae1 + - 5e84daaa-9489-49b0-8e77-39e8eac68691 status: 200 OK code: 200 - duration: 67.535121ms + duration: 62.493431ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2724,7 +2724,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2733,9 +2733,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:32 GMT + - Thu, 17 Oct 2024 08:26:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,10 +2743,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eb07b6d-b95f-4d1c-b5a1-6147c14cf33f + - bce2b6a7-b6a1-4276-b2ab-4f6060889cf9 status: 200 OK code: 200 - duration: 76.844992ms + duration: 63.991421ms - id: 56 request: proto: HTTP/1.1 @@ -2763,7 +2763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2773,7 +2773,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2782,9 +2782,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:37 GMT + - Thu, 17 Oct 2024 08:26:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2792,10 +2792,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f18cbbd-8e83-4d77-9fc6-2d8329aae079 + - 55805f80-07ba-4e9f-8291-23ccd8efb5ad status: 200 OK code: 200 - duration: 75.908448ms + duration: 71.221162ms - id: 57 request: proto: HTTP/1.1 @@ -2812,7 +2812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2822,7 +2822,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2831,9 +2831,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:42 GMT + - Thu, 17 Oct 2024 08:26:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2841,10 +2841,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9073032c-6ade-4f11-88a8-d5188bfee7b2 + - c8be4c32-a393-497b-ad8d-66f18803fbf8 status: 200 OK code: 200 - duration: 73.514077ms + duration: 66.081741ms - id: 58 request: proto: HTTP/1.1 @@ -2861,7 +2861,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2871,7 +2871,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2880,9 +2880,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:47 GMT + - Thu, 17 Oct 2024 08:26:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2890,10 +2890,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 523e787f-3778-4d52-b962-e69dd11f7262 + - 5a45e484-fe05-4f27-99de-0bacc178ca90 status: 200 OK code: 200 - duration: 76.961861ms + duration: 68.17462ms - id: 59 request: proto: HTTP/1.1 @@ -2910,7 +2910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2920,7 +2920,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2929,9 +2929,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:52 GMT + - Thu, 17 Oct 2024 08:26:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2939,10 +2939,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10f90332-682f-4a72-b064-b71e6bb2af56 + - 8799cef1-63d9-4ff9-ade5-c90df7828ff9 status: 200 OK code: 200 - duration: 77.8983ms + duration: 76.245568ms - id: 60 request: proto: HTTP/1.1 @@ -2959,7 +2959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -2969,7 +2969,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2978,9 +2978,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:47:57 GMT + - Thu, 17 Oct 2024 08:26:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2988,10 +2988,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f312faeb-c989-4c46-a26d-177a841ba781 + - ac170b31-6912-4666-ab1d-e5b33e9ee608 status: 200 OK code: 200 - duration: 66.9215ms + duration: 76.255736ms - id: 61 request: proto: HTTP/1.1 @@ -3008,7 +3008,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3018,7 +3018,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3027,9 +3027,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:02 GMT + - Thu, 17 Oct 2024 08:26:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3037,10 +3037,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1ed67ce-79b9-4568-946e-ae0b11e7ddea + - 94a9d839-4b94-4b79-aaa8-39f2f8c4fe70 status: 200 OK code: 200 - duration: 58.653618ms + duration: 72.674068ms - id: 62 request: proto: HTTP/1.1 @@ -3057,7 +3057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3067,7 +3067,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3076,9 +3076,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:07 GMT + - Thu, 17 Oct 2024 08:26:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3086,10 +3086,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88d636dd-bc35-4b62-bf75-4de337c27e66 + - 7e19df12-2e5a-492e-b009-8500d5216d84 status: 200 OK code: 200 - duration: 72.69591ms + duration: 85.968887ms - id: 63 request: proto: HTTP/1.1 @@ -3106,7 +3106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3116,7 +3116,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3125,9 +3125,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:12 GMT + - Thu, 17 Oct 2024 08:26:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3135,10 +3135,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 758a1ce1-7777-4219-aed0-a732adea5697 + - 99a491a8-9490-4703-96b2-fff7afbb9bea status: 200 OK code: 200 - duration: 83.518051ms + duration: 72.546515ms - id: 64 request: proto: HTTP/1.1 @@ -3155,7 +3155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3165,7 +3165,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3174,9 +3174,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:17 GMT + - Thu, 17 Oct 2024 08:27:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3184,10 +3184,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23b56ea6-c814-472b-b65a-829637a806a2 + - 3a2bf9ea-dd3c-4dd5-955d-32e7d3a802e5 status: 200 OK code: 200 - duration: 66.929654ms + duration: 66.114455ms - id: 65 request: proto: HTTP/1.1 @@ -3204,7 +3204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3214,7 +3214,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3223,9 +3223,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:23 GMT + - Thu, 17 Oct 2024 08:27:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3233,10 +3233,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ace62d2-11ba-4fd7-b161-6f19aae47baf + - 19dc26f6-6d2b-413c-be56-c17dae684232 status: 200 OK code: 200 - duration: 73.812725ms + duration: 64.066804ms - id: 66 request: proto: HTTP/1.1 @@ -3253,7 +3253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3263,7 +3263,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3272,9 +3272,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:28 GMT + - Thu, 17 Oct 2024 08:27:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3282,10 +3282,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 473f4d0e-a5d3-421a-a436-19b0368e5790 + - e3291528-20c1-43e0-9150-6f55476a52fb status: 200 OK code: 200 - duration: 78.962493ms + duration: 61.387446ms - id: 67 request: proto: HTTP/1.1 @@ -3302,7 +3302,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3312,7 +3312,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3321,9 +3321,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:33 GMT + - Thu, 17 Oct 2024 08:27:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3331,10 +3331,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eff6a91a-476b-4a00-bc02-fe2f201474da + - 6ea7cef2-7f99-4468-a89a-2635e9e07219 status: 200 OK code: 200 - duration: 77.992621ms + duration: 93.67713ms - id: 68 request: proto: HTTP/1.1 @@ -3351,7 +3351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3361,7 +3361,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3370,9 +3370,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:38 GMT + - Thu, 17 Oct 2024 08:27:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3380,10 +3380,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c56e37b-191d-4414-9eac-4972303f5075 + - 27bb864f-eb5d-4c8f-a0ac-d49dfcc70670 status: 200 OK code: 200 - duration: 74.132091ms + duration: 50.177345ms - id: 69 request: proto: HTTP/1.1 @@ -3400,7 +3400,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3410,7 +3410,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3419,9 +3419,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:43 GMT + - Thu, 17 Oct 2024 08:27:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3429,10 +3429,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5963b3d0-be47-4f3b-aa5a-f8e0ba56a42b + - efe48b5b-c1b9-4264-95bc-5d54ecd2a5b2 status: 200 OK code: 200 - duration: 62.126718ms + duration: 59.081131ms - id: 70 request: proto: HTTP/1.1 @@ -3449,7 +3449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3459,7 +3459,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3468,9 +3468,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:48 GMT + - Thu, 17 Oct 2024 08:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3478,10 +3478,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d86f304f-10ee-4dfa-8727-d82eec12eae6 + - 07987a5b-46eb-4e23-9f12-a40ad058616b status: 200 OK code: 200 - duration: 68.150027ms + duration: 61.610538ms - id: 71 request: proto: HTTP/1.1 @@ -3498,7 +3498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3508,7 +3508,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3517,9 +3517,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:53 GMT + - Thu, 17 Oct 2024 08:27:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3527,10 +3527,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0713054b-f8b8-47c5-bf3b-f99c2dacbeb5 + - d2e8206b-04ad-4b12-8bf4-d7cd7d84633b status: 200 OK code: 200 - duration: 72.258295ms + duration: 63.578812ms - id: 72 request: proto: HTTP/1.1 @@ -3547,7 +3547,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3557,7 +3557,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3566,9 +3566,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:48:58 GMT + - Thu, 17 Oct 2024 08:27:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3576,10 +3576,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bfe2e68-6dd5-4e83-b8c6-f86d23cdf589 + - 0d367e4a-abfa-4f49-8a71-1e9fbb92a0ed status: 200 OK code: 200 - duration: 75.625088ms + duration: 192.730654ms - id: 73 request: proto: HTTP/1.1 @@ -3596,7 +3596,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3606,7 +3606,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3615,9 +3615,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:03 GMT + - Thu, 17 Oct 2024 08:27:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3625,10 +3625,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c375845c-5729-4f4b-b441-e29a3541a851 + - 1989dd96-f0ac-4c17-ba11-438346bb4831 status: 200 OK code: 200 - duration: 64.978101ms + duration: 82.667958ms - id: 74 request: proto: HTTP/1.1 @@ -3645,7 +3645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3655,7 +3655,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3664,9 +3664,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:08 GMT + - Thu, 17 Oct 2024 08:27:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3674,10 +3674,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb311d64-744c-4404-a618-753ea52a9fc1 + - 792968e7-1cff-43b4-ab11-b9886fa8b346 status: 200 OK code: 200 - duration: 60.939429ms + duration: 72.516438ms - id: 75 request: proto: HTTP/1.1 @@ -3694,7 +3694,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3704,7 +3704,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3713,9 +3713,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:13 GMT + - Thu, 17 Oct 2024 08:27:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3723,10 +3723,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 996c349e-dcfd-435c-ab74-8020fb785c37 + - e2432552-c120-4e16-9d78-8ec4cbb6d250 status: 200 OK code: 200 - duration: 68.212826ms + duration: 86.88965ms - id: 76 request: proto: HTTP/1.1 @@ -3743,7 +3743,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3753,7 +3753,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3762,9 +3762,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:18 GMT + - Thu, 17 Oct 2024 08:28:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3772,10 +3772,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f57e05f5-c39d-442b-b7f8-18c6ce1851e7 + - 0b439385-6537-4581-9791-2903cd928861 status: 200 OK code: 200 - duration: 67.998167ms + duration: 83.369866ms - id: 77 request: proto: HTTP/1.1 @@ -3792,7 +3792,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3802,7 +3802,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3811,9 +3811,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:23 GMT + - Thu, 17 Oct 2024 08:28:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3821,10 +3821,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3355bfb-d5ae-43b0-b01b-0de7df34828b + - 7b09655e-1b87-4c6f-a85a-9cead4d20d3e status: 200 OK code: 200 - duration: 68.238415ms + duration: 68.713927ms - id: 78 request: proto: HTTP/1.1 @@ -3841,7 +3841,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3851,7 +3851,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3860,9 +3860,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:29 GMT + - Thu, 17 Oct 2024 08:28:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3870,10 +3870,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3b03dec-b2b0-4572-985d-e02a21cdd005 + - 9cba5b5b-d4e3-40f2-b643-fa5bf693947c status: 200 OK code: 200 - duration: 453.15417ms + duration: 429.602429ms - id: 79 request: proto: HTTP/1.1 @@ -3890,7 +3890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3900,7 +3900,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3909,9 +3909,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:34 GMT + - Thu, 17 Oct 2024 08:28:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3919,10 +3919,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9532f173-dfa1-49bd-b284-264469ac4b02 + - 090bc1fb-ef29-4f18-a97b-f22f445310b1 status: 200 OK code: 200 - duration: 81.352087ms + duration: 77.133242ms - id: 80 request: proto: HTTP/1.1 @@ -3939,7 +3939,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3949,7 +3949,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -3958,9 +3958,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:39 GMT + - Thu, 17 Oct 2024 08:28:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3968,10 +3968,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a28bc9e2-0a4f-48b3-99a3-574c6ba64e1e + - f3a17aa4-38d3-42ae-ac62-b88884446c1d status: 200 OK code: 200 - duration: 68.064205ms + duration: 73.011351ms - id: 81 request: proto: HTTP/1.1 @@ -3988,7 +3988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -3998,7 +3998,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4007,9 +4007,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:44 GMT + - Thu, 17 Oct 2024 08:28:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4017,10 +4017,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e149f677-36bb-4035-ab48-ba46f9e46b4f + - 0e15f4de-36d9-4fb7-b62c-27bfd1dddb52 status: 200 OK code: 200 - duration: 77.813286ms + duration: 56.78893ms - id: 82 request: proto: HTTP/1.1 @@ -4037,7 +4037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4047,7 +4047,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4056,9 +4056,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:49 GMT + - Thu, 17 Oct 2024 08:28:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4066,10 +4066,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6ea62eb-8b0e-47ab-94f1-9bbef7231b20 + - 09da24e9-7b04-440b-b6cd-15b4ac39d0a8 status: 200 OK code: 200 - duration: 73.041753ms + duration: 290.89235ms - id: 83 request: proto: HTTP/1.1 @@ -4086,7 +4086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4096,7 +4096,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4105,9 +4105,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:54 GMT + - Thu, 17 Oct 2024 08:28:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4115,10 +4115,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad7b572a-d1d1-4f14-b47f-749ff03720a1 + - 2c7fac01-17da-4392-93b6-172fafe7e07f status: 200 OK code: 200 - duration: 65.635135ms + duration: 33.941659ms - id: 84 request: proto: HTTP/1.1 @@ -4135,7 +4135,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4145,7 +4145,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4154,9 +4154,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:49:59 GMT + - Thu, 17 Oct 2024 08:28:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4164,10 +4164,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b741cd25-fd7e-4211-a5a9-870396011392 + - a0977dc8-7e55-482a-bdcb-7bee28a33106 status: 200 OK code: 200 - duration: 64.303398ms + duration: 32.479949ms - id: 85 request: proto: HTTP/1.1 @@ -4184,7 +4184,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4194,7 +4194,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4203,9 +4203,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:04 GMT + - Thu, 17 Oct 2024 08:28:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4213,10 +4213,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72137775-be55-4228-b72b-416071142c37 + - f094197c-05c4-415e-8ca9-d9ca2410b43e status: 200 OK code: 200 - duration: 61.704312ms + duration: 60.352375ms - id: 86 request: proto: HTTP/1.1 @@ -4233,7 +4233,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4243,7 +4243,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4252,9 +4252,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:09 GMT + - Thu, 17 Oct 2024 08:28:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4262,10 +4262,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd7c16b7-19b4-4430-8d34-ac4105e36865 + - f57ec8d5-2866-428e-8a72-85b093c59c3a status: 200 OK code: 200 - duration: 69.229692ms + duration: 62.856889ms - id: 87 request: proto: HTTP/1.1 @@ -4282,7 +4282,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4292,7 +4292,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4301,9 +4301,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:15 GMT + - Thu, 17 Oct 2024 08:28:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4311,10 +4311,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6627509-b20f-4307-93fb-7931ce8b06ea + - ada3f211-0986-4e62-aef5-020851987a1c status: 200 OK code: 200 - duration: 200.469149ms + duration: 82.148373ms - id: 88 request: proto: HTTP/1.1 @@ -4331,7 +4331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4341,7 +4341,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4350,9 +4350,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:20 GMT + - Thu, 17 Oct 2024 08:29:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4360,10 +4360,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e8dc115-3cd2-4112-8a3d-0e7a167403d7 + - a4a43283-59b2-49b4-b7d1-9e31a865b26f status: 200 OK code: 200 - duration: 65.35377ms + duration: 63.368998ms - id: 89 request: proto: HTTP/1.1 @@ -4380,7 +4380,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4390,7 +4390,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4399,9 +4399,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:25 GMT + - Thu, 17 Oct 2024 08:29:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4409,10 +4409,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f21b36bc-0573-491a-8527-64d686c65567 + - 662e75eb-1d1c-449b-81a3-deffab266a15 status: 200 OK code: 200 - duration: 75.744718ms + duration: 78.404031ms - id: 90 request: proto: HTTP/1.1 @@ -4429,7 +4429,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4439,7 +4439,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4448,9 +4448,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:30 GMT + - Thu, 17 Oct 2024 08:29:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4458,10 +4458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f99b9bd2-3b70-4b97-9f53-38d5a6743af6 + - 86cb415d-18fb-4420-8334-9e7589e7aa8f status: 200 OK code: 200 - duration: 76.568322ms + duration: 82.180051ms - id: 91 request: proto: HTTP/1.1 @@ -4478,7 +4478,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4488,7 +4488,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4497,9 +4497,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:35 GMT + - Thu, 17 Oct 2024 08:29:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4507,10 +4507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e265c6e-db54-491c-aae7-c75c79d5296f + - 1a0ae55f-4ac7-47c9-bfac-e0d631200176 status: 200 OK code: 200 - duration: 96.232401ms + duration: 79.749781ms - id: 92 request: proto: HTTP/1.1 @@ -4527,7 +4527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4537,7 +4537,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4546,9 +4546,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:40 GMT + - Thu, 17 Oct 2024 08:29:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4556,10 +4556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e492af4-d73f-4b7a-9919-6ac74a12cd1f + - 0b5609d3-adf0-4bf2-987b-dd19e9a8a35d status: 200 OK code: 200 - duration: 76.96594ms + duration: 66.462896ms - id: 93 request: proto: HTTP/1.1 @@ -4576,7 +4576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4586,7 +4586,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4595,9 +4595,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:45 GMT + - Thu, 17 Oct 2024 08:29:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4605,10 +4605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 571299d0-257b-463e-a1fd-4a2ccb1dd8f9 + - 8a196bf7-59a3-4f0c-a743-7b952978d58b status: 200 OK code: 200 - duration: 84.135418ms + duration: 70.147887ms - id: 94 request: proto: HTTP/1.1 @@ -4625,7 +4625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4635,7 +4635,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4644,9 +4644,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:50 GMT + - Thu, 17 Oct 2024 08:29:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4654,10 +4654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8003a0d2-5dea-432a-bc75-8ba3f35bf2e2 + - eadb8110-8da2-4ab5-b195-a311401cb978 status: 200 OK code: 200 - duration: 67.563426ms + duration: 72.565249ms - id: 95 request: proto: HTTP/1.1 @@ -4674,7 +4674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4684,7 +4684,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4693,9 +4693,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:50:55 GMT + - Thu, 17 Oct 2024 08:29:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4703,10 +4703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 680a88a9-6c98-46fe-a289-20a615488946 + - 679c3975-525e-43c6-bff7-7680603dcb1f status: 200 OK code: 200 - duration: 73.135622ms + duration: 62.315982ms - id: 96 request: proto: HTTP/1.1 @@ -4723,7 +4723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4733,7 +4733,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4742,9 +4742,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:00 GMT + - Thu, 17 Oct 2024 08:29:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4752,10 +4752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad771d52-3c69-43eb-92d4-eb1c42a85e85 + - 3e60b8ce-f21f-4ffd-ad64-285df852c38a status: 200 OK code: 200 - duration: 64.026684ms + duration: 106.940143ms - id: 97 request: proto: HTTP/1.1 @@ -4772,7 +4772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4782,7 +4782,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4791,9 +4791,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:05 GMT + - Thu, 17 Oct 2024 08:29:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4801,10 +4801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ebe1244-9102-4a02-9f46-9852e3b63860 + - 9fd6819c-3e3f-4fd1-ac10-105ae81b7b50 status: 200 OK code: 200 - duration: 76.53388ms + duration: 73.525686ms - id: 98 request: proto: HTTP/1.1 @@ -4821,7 +4821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4831,7 +4831,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4840,9 +4840,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:10 GMT + - Thu, 17 Oct 2024 08:29:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4850,10 +4850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41764eac-d293-4a97-9a6f-932cffdfa53e + - e32035c5-b082-48eb-bcf0-2b5b0e1fda03 status: 200 OK code: 200 - duration: 75.728196ms + duration: 123.724251ms - id: 99 request: proto: HTTP/1.1 @@ -4870,7 +4870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4880,7 +4880,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4889,9 +4889,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:16 GMT + - Thu, 17 Oct 2024 08:30:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4899,10 +4899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2bd0433-ba2f-4586-8ec9-225b8eb6ef08 + - 5cc9b552-8831-4041-ad7f-594289e8e485 status: 200 OK code: 200 - duration: 185.095227ms + duration: 83.267942ms - id: 100 request: proto: HTTP/1.1 @@ -4919,7 +4919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4929,7 +4929,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4938,9 +4938,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:21 GMT + - Thu, 17 Oct 2024 08:30:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4948,10 +4948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f79cff10-9f04-448c-8ccf-dcb88c6e0d78 + - 27e813f2-2eeb-4ce1-8e65-3535db4b5a0a status: 200 OK code: 200 - duration: 67.737447ms + duration: 70.514889ms - id: 101 request: proto: HTTP/1.1 @@ -4968,7 +4968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -4978,7 +4978,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -4987,9 +4987,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:26 GMT + - Thu, 17 Oct 2024 08:30:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4997,10 +4997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d128e54b-5959-4677-974a-47aef06ddc85 + - 06ef1873-b5ae-4e97-b5fd-9cf8eda4354a status: 200 OK code: 200 - duration: 65.738444ms + duration: 84.291471ms - id: 102 request: proto: HTTP/1.1 @@ -5017,7 +5017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5027,7 +5027,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5036,9 +5036,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:31 GMT + - Thu, 17 Oct 2024 08:30:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5046,10 +5046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 141ddba3-7dbe-4387-8796-7a89b7264ab0 + - ffd635f5-7a20-4f1d-bf5f-2ee9a80c3f0f status: 200 OK code: 200 - duration: 61.864447ms + duration: 71.911643ms - id: 103 request: proto: HTTP/1.1 @@ -5066,7 +5066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5076,7 +5076,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5085,9 +5085,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:36 GMT + - Thu, 17 Oct 2024 08:30:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5095,10 +5095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6b2fc5e-d668-42b9-a03a-21792f9ecb3a + - 7676cfdd-cfaf-4978-b278-0776d382a37f status: 200 OK code: 200 - duration: 68.632906ms + duration: 74.923972ms - id: 104 request: proto: HTTP/1.1 @@ -5115,7 +5115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5125,7 +5125,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5134,9 +5134,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:41 GMT + - Thu, 17 Oct 2024 08:30:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5144,10 +5144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e6745b6-cbb9-40f8-8b05-3c25a078c32f + - 9c89fa02-95b3-496f-9a2e-50d90315c6d4 status: 200 OK code: 200 - duration: 64.157465ms + duration: 85.322682ms - id: 105 request: proto: HTTP/1.1 @@ -5164,7 +5164,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5174,7 +5174,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5183,9 +5183,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:46 GMT + - Thu, 17 Oct 2024 08:30:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5193,10 +5193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dfc9f08-ce5d-4ff4-82f5-75bd60989aed + - f85dd1c2-1c37-487b-a8c7-6bf029e4cd24 status: 200 OK code: 200 - duration: 65.53673ms + duration: 80.190736ms - id: 106 request: proto: HTTP/1.1 @@ -5213,7 +5213,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5223,7 +5223,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5232,9 +5232,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:51 GMT + - Thu, 17 Oct 2024 08:30:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5242,10 +5242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3b50ad9-f14d-43cb-a574-da942e7eff14 + - 67a10fbb-547c-41d2-936c-f247095713f8 status: 200 OK code: 200 - duration: 71.019281ms + duration: 69.648971ms - id: 107 request: proto: HTTP/1.1 @@ -5262,7 +5262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5272,7 +5272,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5281,9 +5281,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:51:56 GMT + - Thu, 17 Oct 2024 08:30:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5291,10 +5291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5bfbeeb-4e96-4aec-8b28-8eadfbfed4fc + - 563f8278-b8f0-4bbd-9df1-c8c55a76dbe2 status: 200 OK code: 200 - duration: 71.242616ms + duration: 85.230654ms - id: 108 request: proto: HTTP/1.1 @@ -5311,7 +5311,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5321,7 +5321,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5330,9 +5330,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:01 GMT + - Thu, 17 Oct 2024 08:30:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5340,10 +5340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13c17ae4-2f65-49c1-a5e5-a915d813730a + - 4c487978-0b2c-4f2c-8081-edc9bc11267b status: 200 OK code: 200 - duration: 72.756531ms + duration: 71.278822ms - id: 109 request: proto: HTTP/1.1 @@ -5360,7 +5360,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5370,7 +5370,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5379,9 +5379,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:06 GMT + - Thu, 17 Oct 2024 08:30:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5389,10 +5389,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5a0d66e-e5b8-469b-9915-33d9a7e9ed5f + - 35c40cf3-a5d6-4453-9507-acd121730db1 status: 200 OK code: 200 - duration: 74.468875ms + duration: 71.374877ms - id: 110 request: proto: HTTP/1.1 @@ -5409,7 +5409,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5419,7 +5419,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5428,9 +5428,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:11 GMT + - Thu, 17 Oct 2024 08:30:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5438,10 +5438,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8726de7a-512a-466a-9a2a-4ed8ff0c93b5 + - 8f50e11b-0ff6-46d6-b73b-93829414a6c3 status: 200 OK code: 200 - duration: 70.030131ms + duration: 73.006562ms - id: 111 request: proto: HTTP/1.1 @@ -5458,7 +5458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5468,7 +5468,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5477,9 +5477,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:17 GMT + - Thu, 17 Oct 2024 08:31:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5487,10 +5487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32ed9652-b913-483a-9ec4-26e087d7ad55 + - eb1054c3-788f-4f0b-bafd-54e03e093b61 status: 200 OK code: 200 - duration: 92.45279ms + duration: 78.362376ms - id: 112 request: proto: HTTP/1.1 @@ -5507,7 +5507,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5517,7 +5517,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -5526,9 +5526,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:22 GMT + - Thu, 17 Oct 2024 08:31:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5536,10 +5536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3318c878-9db9-44d8-8a52-3a1bdd523ae7 + - bd0c03cd-e426-429b-8f9f-8b3c67bdeeeb status: 200 OK code: 200 - duration: 75.742979ms + duration: 68.897627ms - id: 113 request: proto: HTTP/1.1 @@ -5556,7 +5556,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5564,20 +5564,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "528" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:27 GMT + - Thu, 17 Oct 2024 08:31:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5585,10 +5585,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff151b0e-d5d3-4b5e-b99e-2103e4fa077d + - 3b086ee6-89f7-4401-8600-d41f613652dd status: 200 OK code: 200 - duration: 76.193864ms + duration: 84.385127ms - id: 114 request: proto: HTTP/1.1 @@ -5605,7 +5605,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5613,20 +5613,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "528" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:27 GMT + - Thu, 17 Oct 2024 08:31:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5634,50 +5634,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc2a26d1-dabf-4c6d-929e-5a59bd008a3f + - 5cab6b8c-d82d-4769-8f78-cbd8bdaa7a3e status: 200 OK code: 200 - duration: 67.581819ms + duration: 66.922002ms - id: 115 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 60 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53/snapshots - method: POST + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 378 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "378" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:27 GMT + - Thu, 17 Oct 2024 08:31:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5685,10 +5683,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa8fd987-06c4-40c7-b0ec-92b2494f1266 + - 7d2f0aaf-99f6-4909-a3e8-00d94df5ee15 status: 200 OK code: 200 - duration: 167.992224ms + duration: 73.798672ms - id: 116 request: proto: HTTP/1.1 @@ -5705,7 +5703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5713,20 +5711,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "411" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:27 GMT + - Thu, 17 Oct 2024 08:31:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5734,10 +5732,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 574f517a-e931-4beb-a7e1-f70f29be7023 + - 112b032c-1aad-468f-a652-a407e89c2101 status: 200 OK code: 200 - duration: 83.301877ms + duration: 65.835306ms - id: 117 request: proto: HTTP/1.1 @@ -5754,7 +5752,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5762,20 +5760,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "411" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:32 GMT + - Thu, 17 Oct 2024 08:31:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5783,10 +5781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 822ad460-9b40-4227-be3d-89768368f3b1 + - ed71f742-f7fe-4258-9ffd-1e4369c0b3e3 status: 200 OK code: 200 - duration: 74.002213ms + duration: 68.483694ms - id: 118 request: proto: HTTP/1.1 @@ -5803,7 +5801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5811,20 +5809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:28.131391Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "442" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:37 GMT + - Thu, 17 Oct 2024 08:31:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5832,10 +5830,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8a57509-63b8-4ef6-91d7-2ee38e4ef208 + - 3901aa94-75c8-44f9-842b-5cac3d815906 status: 200 OK code: 200 - duration: 74.750173ms + duration: 87.520311ms - id: 119 request: proto: HTTP/1.1 @@ -5852,7 +5850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5860,20 +5858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:28.131391Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "442" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:37 GMT + - Thu, 17 Oct 2024 08:31:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5881,10 +5879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53f623c3-382f-4a07-af02-2195e01d74dc + - acebbc03-85e4-4c1d-9d84-d55c00c4f3be status: 200 OK code: 200 - duration: 72.071964ms + duration: 84.978482ms - id: 120 request: proto: HTTP/1.1 @@ -5901,7 +5899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5909,20 +5907,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "528" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:38 GMT + - Thu, 17 Oct 2024 08:31:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5930,10 +5928,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1dbdd19-a240-4f6f-acb3-e8c60f9f2002 + - 14461adf-466b-4520-80cd-73bee5a5e2c4 status: 200 OK code: 200 - duration: 71.671305ms + duration: 91.765112ms - id: 121 request: proto: HTTP/1.1 @@ -5950,7 +5948,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -5958,20 +5956,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:28.131391Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "442" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:38 GMT + - Thu, 17 Oct 2024 08:31:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5979,10 +5977,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b728aec9-5833-414c-848f-98189b4e791a + - 7b253c41-37d2-4a80-b19d-0d8f4280812f status: 200 OK code: 200 - duration: 34.706999ms + duration: 67.54121ms - id: 122 request: proto: HTTP/1.1 @@ -5999,7 +5997,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6007,20 +6005,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "528" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:39 GMT + - Thu, 17 Oct 2024 08:31:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6028,10 +6026,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a1c096f-8711-4b87-891e-fe1729e25a97 + - e9bd8156-f801-4bfe-9f88-c3810d0c8b00 status: 200 OK code: 200 - duration: 30.42475ms + duration: 77.166039ms - id: 123 request: proto: HTTP/1.1 @@ -6048,7 +6046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6056,20 +6054,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2024-12-31T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:28.131391Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "442" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:39 GMT + - Thu, 17 Oct 2024 08:32:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6077,50 +6075,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ced26c84-2b44-4c6d-b71f-c57524a2a406 + - 07aafa6a-d6b0-4d5e-8c5f-f3cae915c222 status: 200 OK code: 200 - duration: 74.371807ms + duration: 76.716421ms - id: 124 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 63 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"updated-snapshot","expires_at":"2025-09-20T23:59:59Z"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/6db9aed2-8ba7-4b17-8590-5aa826b0fecf - method: POST + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 412 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:39.794698Z","volume_type":{"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "412" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:39 GMT + - Thu, 17 Oct 2024 08:32:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6128,10 +6124,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e065ec7b-9a3b-4f94-8b74-90e53c3f937c + - 5a00150d-fd3a-4c66-a3d7-6d5a3c3fdf83 status: 200 OK code: 200 - duration: 88.124605ms + duration: 69.454279ms - id: 125 request: proto: HTTP/1.1 @@ -6148,7 +6144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6156,20 +6152,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:39.794698Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "445" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:39 GMT + - Thu, 17 Oct 2024 08:32:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6177,10 +6173,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e9594d-8f16-440b-9c9b-9742dc4cda34 + - 764e4c35-dbef-4322-ab29-a137e8b561cf status: 200 OK code: 200 - duration: 37.763953ms + duration: 62.89921ms - id: 126 request: proto: HTTP/1.1 @@ -6197,7 +6193,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6205,20 +6201,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:39.794698Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "445" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:39 GMT + - Thu, 17 Oct 2024 08:32:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6226,10 +6222,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c518d69d-b2dc-46ff-bd3b-f8bf9ab7f414 + - a107ab3a-5fe7-4d82-bed9-62486f1bee90 status: 200 OK code: 200 - duration: 67.227883ms + duration: 80.704223ms - id: 127 request: proto: HTTP/1.1 @@ -6246,7 +6242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6254,20 +6250,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "528" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:40 GMT + - Thu, 17 Oct 2024 08:32:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6275,10 +6271,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4ad5c56-99c2-47f1-9da0-e09f7525597b + - 0562b12a-f43c-48c7-a554-90a2a7425259 status: 200 OK code: 200 - duration: 72.245704ms + duration: 76.641709ms - id: 128 request: proto: HTTP/1.1 @@ -6295,7 +6291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6303,20 +6299,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 535 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-14T17:52:39.794698Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "445" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:40 GMT + - Thu, 17 Oct 2024 08:32:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6324,10 +6320,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dd6e314-c095-4290-954f-c6a96474f693 + - ac28ce88-9260-4fb4-8755-4b43f65b99aa status: 200 OK code: 200 - duration: 30.688191ms + duration: 76.446749ms - id: 129 request: proto: HTTP/1.1 @@ -6344,28 +6340,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/6db9aed2-8ba7-4b17-8590-5aa826b0fecf - method: DELETE + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 415 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:52:27.329049Z","expires_at":"2025-09-20T23:59:59Z","id":"6db9aed2-8ba7-4b17-8590-5aa826b0fecf","instance_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-14T17:52:41.211858Z","volume_type":{"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "415" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:41 GMT + - Thu, 17 Oct 2024 08:32:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6373,10 +6369,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc5acaef-f3a5-497d-8ca1-2689f6f030e4 + - 4a8e9d76-692e-4964-a612-89a9050f89a6 status: 200 OK code: 200 - duration: 121.77533ms + duration: 71.930219ms - id: 130 request: proto: HTTP/1.1 @@ -6393,7 +6389,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6401,20 +6397,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "528" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:41 GMT + - Thu, 17 Oct 2024 08:32:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6422,10 +6418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8588ac6-a81a-45db-bb63-c9c2f604d5a5 + - d511f7f4-7c80-4171-b0ca-3b5ef0cf7a3d status: 200 OK code: 200 - duration: 29.452994ms + duration: 76.516022ms - id: 131 request: proto: HTTP/1.1 @@ -6442,28 +6438,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 - method: DELETE + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:41 GMT + - Thu, 17 Oct 2024 08:32:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6471,10 +6467,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 151b634b-2425-4a06-b561-7fe5dffb0834 + - 84991055-355b-4a59-a279-f9ce845d6e5a status: 200 OK code: 200 - duration: 169.705303ms + duration: 61.152113ms - id: 132 request: proto: HTTP/1.1 @@ -6491,7 +6487,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6499,20 +6495,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:41 GMT + - Thu, 17 Oct 2024 08:32:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6520,10 +6516,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31baa378-9398-44ed-a1fb-824a252a719d + - e5d490ab-fa62-479d-8a04-67c237fbefb6 status: 200 OK code: 200 - duration: 27.950778ms + duration: 68.233224ms - id: 133 request: proto: HTTP/1.1 @@ -6540,7 +6536,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6548,20 +6544,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:46 GMT + - Thu, 17 Oct 2024 08:32:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6569,10 +6565,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65a6ac72-c327-4745-8743-b8049c948ece + - 237368fb-80b9-472b-9fe6-57314a641f70 status: 200 OK code: 200 - duration: 81.174117ms + duration: 71.296612ms - id: 134 request: proto: HTTP/1.1 @@ -6589,7 +6585,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6597,20 +6593,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:51 GMT + - Thu, 17 Oct 2024 08:32:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6618,10 +6614,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd35c1ae-86e9-4946-b3a2-f14225d360e7 + - d5d81908-0d47-4c93-9df7-bb9f33f0df1d status: 200 OK code: 200 - duration: 72.600321ms + duration: 64.612429ms - id: 135 request: proto: HTTP/1.1 @@ -6638,7 +6634,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6646,20 +6642,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:52:56 GMT + - Thu, 17 Oct 2024 08:33:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6667,10 +6663,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abd51292-a7ff-4b30-a2bc-61ea64e8ba1f + - 8f34f5b2-b0ac-4dc4-9751-324ed730a409 status: 200 OK code: 200 - duration: 62.414906ms + duration: 64.112346ms - id: 136 request: proto: HTTP/1.1 @@ -6687,7 +6683,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6695,20 +6691,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:01 GMT + - Thu, 17 Oct 2024 08:33:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6716,10 +6712,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4003e5d0-9521-4325-a23b-9b41a445674a + - b90c8df9-8ebe-425b-82ac-5f6373501fb0 status: 200 OK code: 200 - duration: 72.068012ms + duration: 58.125444ms - id: 137 request: proto: HTTP/1.1 @@ -6736,7 +6732,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6744,20 +6740,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:06 GMT + - Thu, 17 Oct 2024 08:33:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6765,10 +6761,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53b1ca43-1939-444e-9de3-58a50815857a + - a5991bc4-25f4-4f4a-9c34-a058056b7660 status: 200 OK code: 200 - duration: 69.811927ms + duration: 59.801994ms - id: 138 request: proto: HTTP/1.1 @@ -6785,7 +6781,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6793,20 +6789,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:12 GMT + - Thu, 17 Oct 2024 08:33:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6814,10 +6810,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64665448-6689-48db-8060-20b954a68d84 + - 4f653cb3-86b2-4729-85f5-abfd831e4a85 status: 200 OK code: 200 - duration: 294.011627ms + duration: 79.5475ms - id: 139 request: proto: HTTP/1.1 @@ -6834,7 +6830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6842,20 +6838,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:17 GMT + - Thu, 17 Oct 2024 08:48:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6863,10 +6859,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 949264e6-c8fe-47ed-9a31-f9ea31f1f98a + - 47f1a4dc-3b01-46ee-8abe-b449865c2ac3 status: 200 OK code: 200 - duration: 256.476629ms + duration: 156.487096ms - id: 140 request: proto: HTTP/1.1 @@ -6883,7 +6879,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -6891,20 +6887,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:22 GMT + - Thu, 17 Oct 2024 08:48:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6912,48 +6908,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cc254ef-d9a8-483d-8a43-b1a51684fc72 + - 724b87a3-b766-4fce-a4f7-0513a62e05e7 status: 200 OK code: 200 - duration: 72.328839ms + duration: 84.489391ms - id: 141 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 60 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 378 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:27 GMT + - Thu, 17 Oct 2024 08:48:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6961,10 +6959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bcdcf30-502c-47d9-8797-61becafd36e2 + - 40701950-9ce3-4488-8c22-a3f173008fca status: 200 OK code: 200 - duration: 76.134869ms + duration: 243.48569ms - id: 142 request: proto: HTTP/1.1 @@ -6981,7 +6979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -6989,20 +6987,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 411 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "531" + - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:32 GMT + - Thu, 17 Oct 2024 08:48:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7010,10 +7008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 143df729-82ed-41aa-a7b6-9c5fb50c8008 + - a6912962-6cfb-43ef-8a18-e007c13a5d1b status: 200 OK code: 200 - duration: 63.387719ms + duration: 88.623052ms - id: 143 request: proto: HTTP/1.1 @@ -7030,7 +7028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -7038,20 +7036,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 411 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "531" + - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:37 GMT + - Thu, 17 Oct 2024 08:48:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7059,10 +7057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b94530e6-c9ec-4699-b2c0-f6e93d1018a4 + - 94cdf348-65bb-444c-9d92-a0b1b049ec6c status: 200 OK code: 200 - duration: 74.772067ms + duration: 82.760092ms - id: 144 request: proto: HTTP/1.1 @@ -7079,7 +7077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -7087,20 +7085,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 442 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:17.565517Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "531" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:42 GMT + - Thu, 17 Oct 2024 08:48:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7108,10 +7106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb9f09dc-8b86-4bf3-b75b-181b8e09a7da + - 0ec3cb77-f305-44ac-9393-970115ee9b28 status: 200 OK code: 200 - duration: 81.50446ms + duration: 78.503497ms - id: 145 request: proto: HTTP/1.1 @@ -7128,7 +7126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -7136,20 +7134,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 442 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:17.565517Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "531" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:47 GMT + - Thu, 17 Oct 2024 08:48:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7157,10 +7155,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a629095-ac16-4003-bc6a-efbcdbaa1b28 + - f373d8ba-ae62-4c43-9d9e-295d393d2c86 status: 200 OK code: 200 - duration: 77.853277ms + duration: 47.929132ms - id: 146 request: proto: HTTP/1.1 @@ -7177,7 +7175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7185,20 +7183,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:53 GMT + - Thu, 17 Oct 2024 08:48:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7206,10 +7204,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef1f0eb1-a5f5-490c-a140-f2766edea1f9 + - f64fc6b4-89d8-4548-8133-634e96b7d082 status: 200 OK code: 200 - duration: 75.957558ms + duration: 82.790564ms - id: 147 request: proto: HTTP/1.1 @@ -7226,7 +7224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -7234,20 +7232,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 442 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:17.565517Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "531" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:53:58 GMT + - Thu, 17 Oct 2024 08:48:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7255,10 +7253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a71c70e8-2b95-491f-919c-f185c7ab0077 + - ad98638e-c082-40bf-a7dc-0c4f933bb067 status: 200 OK code: 200 - duration: 79.576636ms + duration: 77.76585ms - id: 148 request: proto: HTTP/1.1 @@ -7275,7 +7273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7283,20 +7281,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "531" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:03 GMT + - Thu, 17 Oct 2024 08:48:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7304,10 +7302,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f28014ab-17b6-42c0-a3c6-4a059be10fff + - 8ea4bc04-032d-4085-a9e0-4d0f809a5cd3 status: 200 OK code: 200 - duration: 79.129139ms + duration: 70.255474ms - id: 149 request: proto: HTTP/1.1 @@ -7324,7 +7322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -7332,20 +7330,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 442 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:17.565517Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "531" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:08 GMT + - Thu, 17 Oct 2024 08:48:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7353,11 +7351,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fe71a7d-1889-417f-b043-c6a3a3e0eeee + - 23e2ae4b-439a-44d5-a8b5-295049e32580 status: 200 OK code: 200 - duration: 69.008256ms + duration: 71.37765ms - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 63 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"updated-snapshot","expires_at":"2025-09-20T23:59:59Z"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/1a4f9b66-549c-41b1-88da-ad197e0a6cfa + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 412 + uncompressed: false + body: '{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:29.871856Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "412" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 08:48:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - edb848a1-f3f5-443d-b7da-e232fb333d46 + status: 200 OK + code: 200 + duration: 70.489751ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -7373,7 +7422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -7381,20 +7430,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 445 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:29.871856Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' headers: Content-Length: - - "531" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:13 GMT + - Thu, 17 Oct 2024 08:48:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7402,11 +7451,158 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7c4cf44-ff17-4291-8728-537852a19b5b + - 2c396d3d-e617-4c3a-87f8-297a7cb36c57 status: 200 OK code: 200 - duration: 67.498501ms - - id: 151 + duration: 28.914166ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 445 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:29.871856Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "445" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 08:48:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d79c821-502c-4fed-8645-acde415283d6 + status: 200 OK + code: 200 + duration: 64.786396ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 08:48:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 95210543-af8d-4e3c-84f5-1009693a050a + status: 200 OK + code: 200 + duration: 63.812078ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 445 + uncompressed: false + body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:29.871856Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + headers: + Content-Length: + - "445" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 08:48:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5e079841-76a4-4d5c-bd30-b11cc1fe1d86 + status: 200 OK + code: 200 + duration: 71.771881ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -7422,8 +7618,106 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/1a4f9b66-549c-41b1-88da-ad197e0a6cfa + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 415 + uncompressed: false + body: '{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-17T08:48:31.495368Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "415" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 08:48:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39d365ed-1cd2-4e47-85bb-a597c60e43b2 + status: 200 OK + code: 200 + duration: 132.330658ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 528 + uncompressed: false + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "528" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 17 Oct 2024 08:48:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20222924-cf6c-47ce-b5a0-1d603afc48d4 + status: 200 OK + code: 200 + duration: 63.663316ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 @@ -7432,7 +7726,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "531" @@ -7441,9 +7735,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:18 GMT + - Thu, 17 Oct 2024 08:48:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7451,11 +7745,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51449a85-4e85-4bd0-9a87-7c4d4d585587 + - 79c90f61-368f-44bf-a132-c4677648bc85 status: 200 OK code: 200 - duration: 161.740358ms - - id: 152 + duration: 174.83477ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -7471,7 +7765,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7481,7 +7775,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "531" @@ -7490,9 +7784,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:23 GMT + - Thu, 17 Oct 2024 08:48:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7500,11 +7794,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c330a3e-7bce-44d3-a5af-c37e50ed8b00 + - 588fdf8d-24a9-4b45-b848-342b18c78a61 status: 200 OK code: 200 - duration: 64.898938ms - - id: 153 + duration: 58.470988ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -7520,7 +7814,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7530,7 +7824,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "531" @@ -7539,9 +7833,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:28 GMT + - Thu, 17 Oct 2024 08:48:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7549,11 +7843,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afe70f08-0385-4137-a141-f8e46c459bcb + - 6c82853e-db3b-4bf6-91e3-f89946be745d status: 200 OK code: 200 - duration: 74.87672ms - - id: 154 + duration: 117.141198ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -7569,7 +7863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7579,7 +7873,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "531" @@ -7588,9 +7882,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:33 GMT + - Thu, 17 Oct 2024 08:48:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7598,11 +7892,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14776183-5baa-4c03-b3b4-a6c4330197ba + - a17f6bd9-89e1-4eed-add8-40301158804a status: 200 OK code: 200 - duration: 89.361577ms - - id: 155 + duration: 153.142818ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -7618,7 +7912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7628,7 +7922,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "531" @@ -7637,9 +7931,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:38 GMT + - Thu, 17 Oct 2024 08:48:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7647,11 +7941,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 871667e1-7d92-4788-88cd-0b705b985314 + - 3f3ddf8a-ac96-4cca-a9cd-87aba9b34392 status: 200 OK code: 200 - duration: 64.832112ms - - id: 156 + duration: 66.078449ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -7667,7 +7961,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7677,7 +7971,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "531" @@ -7686,9 +7980,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:43 GMT + - Thu, 17 Oct 2024 08:48:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7696,11 +7990,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abca3e43-fc46-4a49-989b-ec04bf4e446a + - e7bb978c-336c-44db-8b07-438059a1d113 status: 200 OK code: 200 - duration: 60.517576ms - - id: 157 + duration: 65.615197ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -7716,7 +8010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7726,7 +8020,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-14T17:42:57.573089Z","endpoints":[{"dns_records":["33764e24-f4d6-44da-a8ae-d33b0a42de53.mgdb.fr-par.scw.cloud"],"id":"4f9f07e8-c710-4f11-be7d-a8439655951d","ips":[],"port":27017,"public":{}}],"id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "531" @@ -7735,9 +8029,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:54:48 GMT + - Thu, 17 Oct 2024 08:48:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7745,11 +8039,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db92f8fd-800d-4430-b3f0-6ca71e70850d + - 159ad6a1-bd1a-4089-b319-4e25c0d7e9f3 status: 200 OK code: 200 - duration: 78.730828ms - - id: 158 + duration: 68.258025ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -7765,7 +8059,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/33764e24-f4d6-44da-a8ae-d33b0a42de53 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 method: GET response: proto: HTTP/2.0 @@ -7775,7 +8069,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"33764e24-f4d6-44da-a8ae-d33b0a42de53","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","type":"not_found"}' headers: Content-Length: - "129" @@ -7784,9 +8078,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:55:16 GMT + - Thu, 17 Oct 2024 08:49:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7794,11 +8088,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1223c874-e5b9-4584-818d-d4d1ad148c2e + - 3941285e-1730-43e1-863f-3f561f3d6858 status: 404 Not Found code: 404 - duration: 81.157513ms - - id: 159 + duration: 27.153867ms + - id: 165 request: proto: HTTP/1.1 proto_major: 1 @@ -7814,7 +8108,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=33764e24-f4d6-44da-a8ae-d33b0a42de53&order_by=created_at_asc + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -7833,9 +8127,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 17:55:16 GMT + - Thu, 17 Oct 2024 08:49:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7843,7 +8137,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b57bc16c-fb45-4a2a-ae89-e1d29e8c5f63 + - 0e1499f0-b4e1-4513-91ac-aa7a10598a94 status: 200 OK code: 200 - duration: 84.956538ms + duration: 76.021846ms From 2af9383418ce30bcd76211a56a583e892620dc70 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 11:32:49 +0200 Subject: [PATCH 10/26] feat(mongodb): fix tflint --- internal/services/mongodb/data_source_instance.go | 2 +- internal/services/mongodb/instance.go | 2 +- internal/services/mongodb/snapshot.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/services/mongodb/data_source_instance.go b/internal/services/mongodb/data_source_instance.go index b1b08b0145..04bc63f437 100644 --- a/internal/services/mongodb/data_source_instance.go +++ b/internal/services/mongodb/data_source_instance.go @@ -83,7 +83,7 @@ func DataSourceInstanceRead(ctx context.Context, d *schema.ResourceData, m inter _ = d.Set("name", instance.Name) _ = d.Set("version", instance.Version) - _ = d.Set("node_number", instance.NodeNumber) + _ = d.Set("node_number", int(instance.NodeNumber)) _ = d.Set("node_type", instance.NodeType) _ = d.Set("project_id", instance.ProjectID) _ = d.Set("tags", instance.Tags) diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index 6683f953be..de30587163 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -257,7 +257,7 @@ func ResourceInstanceRead(ctx context.Context, d *schema.ResourceData, m interfa _ = d.Set("name", instance.Name) _ = d.Set("version", instance.Version) - _ = d.Set("node_number", instance.NodeNumber) + _ = d.Set("node_number", int(instance.NodeNumber)) _ = d.Set("node_type", instance.NodeType) _ = d.Set("project_id", instance.ProjectID) _ = d.Set("tags", instance.Tags) diff --git a/internal/services/mongodb/snapshot.go b/internal/services/mongodb/snapshot.go index b16cefceb7..341399a636 100644 --- a/internal/services/mongodb/snapshot.go +++ b/internal/services/mongodb/snapshot.go @@ -135,7 +135,7 @@ func ResourceSnapshotRead(ctx context.Context, d *schema.ResourceData, m interfa _ = d.Set("instance_id", zonal.NewIDString(zone, snapshot.InstanceID)) _ = d.Set("name", snapshot.Name) _ = d.Set("instance_name", snapshot.InstanceName) - _ = d.Set("size", snapshot.Size) + _ = d.Set("size", int64(snapshot.Size)) _ = d.Set("node_type", snapshot.NodeType) _ = d.Set("volume_type", snapshot.VolumeType.Type) _ = d.Set("expires_at", types.FlattenTime(snapshot.ExpiresAt)) From 26ee1472d8dbdf9b7128aacf4a1d909bf348ea06 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 12:05:08 +0200 Subject: [PATCH 11/26] feat(mongodb): add datasource doc --- docs/data-sources/mongodb_instance.md | 68 +++++++++++++++++++++++++++ docs/resources/mongodb_instance.md | 2 +- docs/resources/mongodb_snapshot.md | 1 - 3 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 docs/data-sources/mongodb_instance.md diff --git a/docs/data-sources/mongodb_instance.md b/docs/data-sources/mongodb_instance.md new file mode 100644 index 0000000000..15131d9a6f --- /dev/null +++ b/docs/data-sources/mongodb_instance.md @@ -0,0 +1,68 @@ +--- +subcategory: "MongoDB" +page_title: "Scaleway: scaleway_mongodb_instance" +--- + +# scaleway_mongodb_instance + +Gets information about a MongoDB Instance. + +For further information refer to the Managed Databases for MongoDB [API documentation](https://developers.scaleway.com/en/products/mongodb/api/) + +## Example Usage + +```hcl +# Get info by name +data "scaleway_mongodb_instance" "my_instance" { + name = "foobar" +} + +# Get info by instance ID +data "scaleway_mongodb_instance" "my_instance" { + instance_id = "11111111-1111-1111-1111-111111111111" +} + +# Get other attributes +output "mongodb_version" { + description = "Version of the MongoDB instance" + value = data.scaleway_mongodb_instance.my_instance.version +} +``` + +## Argument Reference + +- `name` - (Optional) The name of the MongoDB instance. + +- `instance_id` - (Optional) The MongoDB instance ID. + + -> **Note** You must specify at least one: `name` or `instance_id`. + +- `project_id` - (Optional) The ID of the project the MongoDB instance is in. Can be used to filter instances when using `name`. + +- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#zones) in which the MongoDB Instance exists. + +- `organization_id` - (Defaults to [provider](../index.md#organization_id) `organization_id`) The ID of the organization the MongoDB instance is in. + +## Attributes Reference + +In addition to all above arguments, the following attributes are exported: + +- `id` - The ID of the MongoDB Instance. +- `name` - The name of the MongoDB instance. +- `version` - The version of MongoDB running on the instance. +- `node_type` - The type of MongoDB node. +- `node_number` - The number of nodes in the MongoDB cluster. +- `created_at` - The date and time the MongoDB instance was created. +- `project_id` - The ID of the project the instance belongs to. +- `tags` - A list of tags attached to the MongoDB instance. +- `volume_type` - The type of volume attached to the MongoDB instance. +- `volume_size_in_gb` - The size of the attached volume, in GB. +- `public_network` - The details of the public network configuration, if applicable. + +## Import + +MongoDB™ instance can be imported using the `id`, e.g. + +```bash +terraform import scaleway_mongodb_instance.main fr-par-1/11111111-1111-1111-1111-111111111111 +``` diff --git a/docs/resources/mongodb_instance.md b/docs/resources/mongodb_instance.md index 8ef3ca1812..70cf018bf9 100644 --- a/docs/resources/mongodb_instance.md +++ b/docs/resources/mongodb_instance.md @@ -55,7 +55,7 @@ The following arguments are supported: ## Attributes Reference -In addition to the arguments above, the following attributes are exported: +In addition to all arguments above, the following attributes are exported: - `id` - The ID of the MongoDB instance. - `created_at` - The date and time of the creation of the MongoDB instance. diff --git a/docs/resources/mongodb_snapshot.md b/docs/resources/mongodb_snapshot.md index e3d4213b78..8933aff46d 100644 --- a/docs/resources/mongodb_snapshot.md +++ b/docs/resources/mongodb_snapshot.md @@ -1,4 +1,3 @@ - --- subcategory: "MongoDB" page_title: "Scaleway: scaleway_mongodb_snapshot" From eca169b492f830e3e4d3b6026c427335eafe844c Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 12:33:30 +0200 Subject: [PATCH 12/26] feat(mongodb): fix lint --- internal/services/mongodb/instance.go | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index de30587163..fcc084f632 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -172,7 +172,7 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter nodeNumber := scw.Uint32Ptr(uint32(d.Get("node_number").(int))) snapshotID, exist := d.GetOk("snapshot_id") - res := &mongodb.Instance{} + var res *mongodb.Instance if exist { volume := &mongodb.RestoreSnapshotRequestVolumeDetails{ VolumeType: mongodb.VolumeType(d.Get("volume_type").(string)), @@ -190,7 +190,6 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter return diag.FromErr(err) } } else { - createReq := &mongodb.CreateInstanceRequest{ ProjectID: d.Get("project_id").(string), Name: types.ExpandOrGenerateString(d.Get("name"), "mongodb"), @@ -219,7 +218,8 @@ func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m inter epSpecs := make([]*mongodb.EndpointSpec, 0, 1) spec := &mongodb.EndpointSpecPublicDetails{} - createReq.Endpoints = append(epSpecs, &mongodb.EndpointSpec{Public: spec}) + epSpecs = append(epSpecs, &mongodb.EndpointSpec{Public: spec}) + createReq.Endpoints = epSpecs res, err = mongodbAPI.CreateInstance(createReq, scw.WithContext(ctx)) if err != nil { @@ -319,7 +319,9 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter return diag.FromErr(err) } _, err = waitForInstance(ctx, mongodbAPI, region, ID, d.Timeout(schema.TimeoutUpdate)) - + if err != nil { + return diag.FromErr(err) + } } req := &mongodb.UpdateInstanceRequest{ @@ -360,7 +362,9 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter } _, err = mongodbAPI.UpdateUser(&updateUserRequest, scw.WithContext(ctx)) - + if err != nil { + return diag.FromErr(err) + } _, err = waitForInstance(ctx, mongodbAPI, region, ID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) From f1387f775cb9f64a833cd8819292e56527cb5f57 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 12:43:31 +0200 Subject: [PATCH 13/26] feat(mongodb): fix lint --- internal/services/mongodb/data_source_instance.go | 1 - internal/services/mongodb/instance_test.go | 4 +++- internal/services/mongodb/snapshot.go | 11 ++++++++++- internal/services/mongodb/testfuncs/sweep.go | 3 +++ 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/internal/services/mongodb/data_source_instance.go b/internal/services/mongodb/data_source_instance.go index 04bc63f437..0b5d2c53d7 100644 --- a/internal/services/mongodb/data_source_instance.go +++ b/internal/services/mongodb/data_source_instance.go @@ -15,7 +15,6 @@ import ( ) func DataSourceInstance() *schema.Resource { - dsSchema := datasource.SchemaFromResourceSchema(ResourceInstance().Schema) datasource.AddOptionalFieldsToSchema(dsSchema, "name", "region", "project_id") diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index aa80239900..4c18558bda 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -176,8 +176,10 @@ func IsInstanceDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { if err != nil { return err } - extractRegion, err := zone.Region() + if err != nil { + return err + } instance, err := mongodbAPI.GetInstance(&mongodbSDK.GetInstanceRequest{ InstanceID: ID, Region: extractRegion, diff --git a/internal/services/mongodb/snapshot.go b/internal/services/mongodb/snapshot.go index 341399a636..6592902474 100644 --- a/internal/services/mongodb/snapshot.go +++ b/internal/services/mongodb/snapshot.go @@ -125,6 +125,9 @@ func ResourceSnapshotRead(ctx context.Context, d *schema.ResourceData, m interfa return diag.FromErr(err) } zone, snapshotID, err := zonal.ParseID(d.Id()) + if err != nil { + return diag.FromErr(err) + } instanceID := locality.ExpandID(d.Get("instance_id").(string)) snapshot, err := waitForSnapshot(ctx, mongodbAPI, region, instanceID, snapshotID, d.Timeout(schema.TimeoutCreate)) @@ -152,6 +155,9 @@ func ResourceSnapshotUpdate(ctx context.Context, d *schema.ResourceData, m inter return diag.FromErr(err) } _, snapshotID, err := zonal.ParseID(d.Id()) + if err != nil { + return diag.FromErr(err) + } updateReq := &mongodb.UpdateSnapshotRequest{ SnapshotID: snapshotID, @@ -181,12 +187,15 @@ func ResourceSnapshotUpdate(ctx context.Context, d *schema.ResourceData, m inter return ResourceSnapshotRead(ctx, d, m) } -func ResourceSnapshotDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { +func ResourceSnapshotDelete(_ context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { mongodbAPI, region, err := newAPIWithRegion(d, m) if err != nil { return diag.FromErr(err) } _, snapshotID, err := zonal.ParseID(d.Id()) + if err != nil { + return diag.FromErr(err) + } deleteReq := &mongodb.DeleteSnapshotRequest{ SnapshotID: snapshotID, diff --git a/internal/services/mongodb/testfuncs/sweep.go b/internal/services/mongodb/testfuncs/sweep.go index e1acd5d569..8d99e2df0a 100644 --- a/internal/services/mongodb/testfuncs/sweep.go +++ b/internal/services/mongodb/testfuncs/sweep.go @@ -22,6 +22,9 @@ func testSweepMongodbInstance(_ string) error { mongodbAPI := mongodb.NewAPI(scwClient) logging.L.Debugf("sweeper: destroying the mongodb instance in (%s)", zone) extractRegion, err := zone.Region() + if err != nil { + return fmt.Errorf("error extract region in (%s) in sweeper: %w", zone, err) + } listInstance, err := mongodbAPI.ListInstances(&mongodb.ListInstancesRequest{ Region: extractRegion, }) From 20a41fcf21f943b0151fad4d02feeece26067689 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 13:02:49 +0200 Subject: [PATCH 14/26] feat(mongodb): fix lint --- internal/services/mongodb/data_source_instance.go | 2 +- internal/services/mongodb/instance.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/services/mongodb/data_source_instance.go b/internal/services/mongodb/data_source_instance.go index 0b5d2c53d7..856ffc758f 100644 --- a/internal/services/mongodb/data_source_instance.go +++ b/internal/services/mongodb/data_source_instance.go @@ -6,7 +6,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" - "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" + mongodb "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index fcc084f632..baf888c100 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -164,7 +164,6 @@ func ResourceInstance() *schema.Resource { func ResourceInstanceCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { mongodbAPI, zone, err := newAPIWithZone(d, m) - if err != nil { return diag.FromErr(err) } From 399024a5e9fc10825ed0b2ac47108dc8ec8e749c Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 13:12:39 +0200 Subject: [PATCH 15/26] feat(mongodb): fix lint --- internal/types/map.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/types/map.go b/internal/types/map.go index 5a6fedd0f3..ad63cb6ed2 100644 --- a/internal/types/map.go +++ b/internal/types/map.go @@ -61,7 +61,7 @@ func ExpandMapStringString(data any) map[string]string { // GetMapValue returns the value for a key from a map. // returns zero value if key does not exist in map. -func GetMapValue[T any](m map[string]any, key string) T { //nolint: ireturn +func GetMapValue[T any](m map[string]any, key string) T { var val T valI, exists := m[key] if exists { From b9870f09d27a4ed66831fdf3c3a21ed5adfe4d02 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 13:14:37 +0200 Subject: [PATCH 16/26] feat(mongodb): fix lint --- internal/types/map.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/types/map.go b/internal/types/map.go index ad63cb6ed2..5a6fedd0f3 100644 --- a/internal/types/map.go +++ b/internal/types/map.go @@ -61,7 +61,7 @@ func ExpandMapStringString(data any) map[string]string { // GetMapValue returns the value for a key from a map. // returns zero value if key does not exist in map. -func GetMapValue[T any](m map[string]any, key string) T { +func GetMapValue[T any](m map[string]any, key string) T { //nolint: ireturn var val T valI, exists := m[key] if exists { From 245d3f2a6537ae162de45c19f384cb0a516567fd Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 13:40:49 +0200 Subject: [PATCH 17/26] feat(mongodb): fix lint --- internal/types/map.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/internal/types/map.go b/internal/types/map.go index 5a6fedd0f3..79a9fdc761 100644 --- a/internal/types/map.go +++ b/internal/types/map.go @@ -61,7 +61,10 @@ func ExpandMapStringString(data any) map[string]string { // GetMapValue returns the value for a key from a map. // returns zero value if key does not exist in map. -func GetMapValue[T any](m map[string]any, key string) T { //nolint: ireturn +func GetMapValue[T any]( //nolint:ireturn + m map[string]any, + key string, +) T { var val T valI, exists := m[key] if exists { From dfe57196c8c3e32fc64f065d4bc2e1e697a1007f Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 17 Oct 2024 15:27:29 +0200 Subject: [PATCH 18/26] feat(mongodb): add mongodb to workflow --- .github/workflows/acceptance-tests.yaml | 1 + .github/workflows/nightly.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/acceptance-tests.yaml b/.github/workflows/acceptance-tests.yaml index 1b216e8fb7..f679d9abc4 100644 --- a/.github/workflows/acceptance-tests.yaml +++ b/.github/workflows/acceptance-tests.yaml @@ -30,6 +30,7 @@ jobs: - lb - marketplace - mnq + - mongodb - object - rdb - redis diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 351c91fcc8..f0a2c982bf 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -31,6 +31,7 @@ jobs: - lb - marketplace - mnq + - mongodb - object - rdb - redis From ad141269c590c3684d7caf441535a4194d069e67 Mon Sep 17 00:00:00 2001 From: jremy Date: Fri, 18 Oct 2024 13:35:07 +0200 Subject: [PATCH 19/26] feat(mongodb): add test for update tag and password --- internal/services/mongodb/instance.go | 22 +- internal/services/mongodb/instance_test.go | 55 + ...stance-update-name-tags-user.cassette.yaml | 8388 +++++++++++++++++ ...go-db-instance-volume-update.cassette.yaml | 3818 ++------ 4 files changed, 9433 insertions(+), 2850 deletions(-) create mode 100644 internal/services/mongodb/testdata/mongo-db-instance-update-name-tags-user.cassette.yaml diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index baf888c100..f594281973 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -64,6 +64,7 @@ func ResourceInstance() *schema.Resource { "user_name": { Type: schema.TypeString, Optional: true, + ForceNew: true, Description: "Name of the user created when the cluster is created", ConflictsWith: []string{ "snapshot_id", @@ -338,9 +339,11 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter } } - _, err = mongodbAPI.UpdateInstance(req, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) + if req.Name != nil || req.Tags != nil { + _, err = mongodbAPI.UpdateInstance(req, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } } //////////////////// @@ -348,22 +351,23 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter //////////////////// updateUserRequest := mongodb.UpdateUserRequest{ + Name: d.Get("user_name").(string), Region: region, InstanceID: ID, } - if d.HasChange("user_name") { - updateUserRequest.Name = d.Get("user_name").(string) - } if d.HasChange("password") { password := d.Get("password").(string) updateUserRequest.Password = &password } - _, err = mongodbAPI.UpdateUser(&updateUserRequest, scw.WithContext(ctx)) - if err != nil { - return diag.FromErr(err) + if updateUserRequest.Password != nil { + _, err = mongodbAPI.UpdateUser(&updateUserRequest, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } } + _, err = waitForInstance(ctx, mongodbAPI, region, ID, d.Timeout(schema.TimeoutCreate)) if err != nil { return diag.FromErr(err) diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 4c18558bda..8ec7aa0eb7 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -93,6 +93,61 @@ func TestAccMongoDBInstance_VolumeUpdate(t *testing.T) { }) } +func TestAccMongoDBInstance_UpdateNameTagsUser(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: IsInstanceDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource scaleway_mongodb_instance main { + name = "test-mongodb-update-initial" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "user" + password = "initial_password" + tags = ["initial_tag1", "initial_tag2"] + } + `, + Check: resource.ComposeTestCheckFunc( + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "name", "test-mongodb-update-initial"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "user_name", "user"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.#", "2"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.0", "initial_tag1"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.1", "initial_tag2"), + ), + }, + { + Config: ` + resource scaleway_mongodb_instance main { + name = "test-mongodb-update-final" + version = "7.0.12" + node_type = "MGDB-PLAY2-NANO" + node_number = 1 + user_name = "user" + password = "updated_password" + tags = ["updated_tag1", "updated_tag2", "updated_tag3"] + } + `, + Check: resource.ComposeTestCheckFunc( + isMongoDBInstancePresent(tt, "scaleway_mongodb_instance.main"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "name", "test-mongodb-update-final"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.#", "3"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.0", "updated_tag1"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.1", "updated_tag2"), + resource.TestCheckResourceAttr("scaleway_mongodb_instance.main", "tags.2", "updated_tag3"), + ), + }, + }, + }) +} + func TestAccMongoDBInstance_FromSnapshot(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() diff --git a/internal/services/mongodb/testdata/mongo-db-instance-update-name-tags-user.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-update-name-tags-user.cassette.yaml new file mode 100644 index 0000000000..543418dcd9 --- /dev/null +++ b/internal/services/mongodb/testdata/mongo-db-instance-update-name-tags-user.cassette.yaml @@ -0,0 +1,8388 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 330 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-mongodb-update-initial","version":"7.0.12","tags":["initial_tag1","initial_tag2"],"node_number":1,"node_type":"MGDB-PLAY2-NANO","user_name":"user","password":"initial_password","volume":{"volume_size":5000000000,"volume_type":"sbs_5k"},"endpoints":[{"public":{}}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:48:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 55e9f8f4-ae27-4712-92a3-8c5233e8aa7e + status: 200 OK + code: 200 + duration: 670.413001ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:48:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76de24ce-9fc5-437a-97fe-c09eaa769660 + status: 200 OK + code: 200 + duration: 83.398675ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:48:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b8c70673-f312-4b57-81b7-45f555977f9d + status: 200 OK + code: 200 + duration: 71.314843ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:48:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a01ec456-8e94-4cc2-95e4-bfb3a37a0542 + status: 200 OK + code: 200 + duration: 99.602228ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:48:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e8b5d734-f9ee-4a8a-b982-a163fe36e225 + status: 200 OK + code: 200 + duration: 76.872856ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:48:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6841593a-43b1-42ab-800c-6f899f1eff09 + status: 200 OK + code: 200 + duration: 69.13272ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e3c8d740-1df4-44e4-beb2-3b5c7791e6bd + status: 200 OK + code: 200 + duration: 85.601302ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 669a4759-0b51-4e83-9d7b-290efdeb7bc9 + status: 200 OK + code: 200 + duration: 76.252437ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9af13ccc-a6b1-4734-9bc0-d9d56ca640d6 + status: 200 OK + code: 200 + duration: 66.781773ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dcfd0d41-6992-4e6e-bdcb-ed002833ef49 + status: 200 OK + code: 200 + duration: 88.646881ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4d816c3-c8f9-4db5-832d-5b1c55214372 + status: 200 OK + code: 200 + duration: 74.125647ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94075818-17e6-45fa-bf96-d366f3c660d1 + status: 200 OK + code: 200 + duration: 116.151451ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1113ccb1-8194-4a93-8890-c67031d9114e + status: 200 OK + code: 200 + duration: 65.432315ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3dbc6e32-5d89-4cc5-91a3-779dc5899d1e + status: 200 OK + code: 200 + duration: 71.194671ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39a23a1f-98f1-4944-8b1c-bb68923832ef + status: 200 OK + code: 200 + duration: 131.240882ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 964d7a4e-46f9-474a-b375-3acf5e5ff150 + status: 200 OK + code: 200 + duration: 65.578594ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec0ff564-75aa-47d3-8f82-41543acc9938 + status: 200 OK + code: 200 + duration: 65.616264ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:49:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2bc262fb-c9c4-4e3b-8f43-46371d054d8e + status: 200 OK + code: 200 + duration: 78.927043ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d18c4b12-e55c-4ee4-aace-9946db8a2578 + status: 200 OK + code: 200 + duration: 98.304678ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1adf0aba-9b1f-439d-a11f-0c6f351fb4cf + status: 200 OK + code: 200 + duration: 66.712471ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc1f1931-ee3e-4145-beba-291b970a807d + status: 200 OK + code: 200 + duration: 91.206123ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8183eb06-0a33-448e-8c03-039568ae8684 + status: 200 OK + code: 200 + duration: 71.755066ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aba0c659-8132-411c-924d-ae3fb5f9c3c3 + status: 200 OK + code: 200 + duration: 67.453088ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8103bde-fb80-4517-b8bc-a1958f2123b6 + status: 200 OK + code: 200 + duration: 61.540108ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2841d90f-367b-4e0a-a906-afb2c351ef59 + status: 200 OK + code: 200 + duration: 67.002862ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ad7898b1-8f51-4936-a6c9-10b852235a1c + status: 200 OK + code: 200 + duration: 115.106225ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79a530b1-02b1-42d0-bddc-2d99e258b20f + status: 200 OK + code: 200 + duration: 69.616907ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76aed723-715c-4613-9e39-7c790d06b956 + status: 200 OK + code: 200 + duration: 63.68529ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:50:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 17da00db-a370-4aa2-b41b-0282b7e7bf35 + status: 200 OK + code: 200 + duration: 98.234506ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 484334d7-13e1-4f6f-b656-2f3357a60214 + status: 200 OK + code: 200 + duration: 97.533952ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 499bad54-98b9-451a-9f0b-c77a65af088e + status: 200 OK + code: 200 + duration: 69.70974ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 414639b3-a388-40ba-ac1c-ef4df80858ea + status: 200 OK + code: 200 + duration: 80.716936ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa8bcc0f-480a-40d5-a56c-63e4e16e9f2f + status: 200 OK + code: 200 + duration: 59.918352ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70756137-f10e-412b-9f2f-2da4dd069d77 + status: 200 OK + code: 200 + duration: 70.186132ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52654cef-6a98-4435-89c7-0ee1bcfa7b14 + status: 200 OK + code: 200 + duration: 68.585567ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b62df36b-0b1f-4c6d-8358-15b7035d3a66 + status: 200 OK + code: 200 + duration: 87.568979ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b4ca2132-da74-4a48-a958-936e8a683993 + status: 200 OK + code: 200 + duration: 63.977843ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b89194a6-4501-4d96-80cc-2a0140625055 + status: 200 OK + code: 200 + duration: 76.675142ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c6456ea-94e6-4ae8-be31-ce9d7e30da4b + status: 200 OK + code: 200 + duration: 92.844874ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78aa778e-05d4-4db9-b082-696bc8155004 + status: 200 OK + code: 200 + duration: 68.44011ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:51:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 825c7aec-e138-40f7-80f6-034114a2734b + status: 200 OK + code: 200 + duration: 82.829831ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98180ba8-3a02-489d-acf8-87d8a79fdb56 + status: 200 OK + code: 200 + duration: 64.427382ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 053d5b24-4dd4-412c-a140-90fa6ab50de8 + status: 200 OK + code: 200 + duration: 67.877176ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7fc33500-c8cd-4b5a-b4aa-fc2c56da9ad8 + status: 200 OK + code: 200 + duration: 70.278013ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cd85f603-225b-467e-ba86-7315e32eb074 + status: 200 OK + code: 200 + duration: 61.598735ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46f33b52-0c7e-470a-812c-6c59ce126890 + status: 200 OK + code: 200 + duration: 66.524089ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7f4e8bf-f744-4519-bae3-8e346cbef0d5 + status: 200 OK + code: 200 + duration: 61.847048ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c4596504-f8af-436a-b4d3-25c08b6f3b67 + status: 200 OK + code: 200 + duration: 70.139589ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f170310e-4408-4133-8d76-97a34154956f + status: 200 OK + code: 200 + duration: 67.501853ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb4bcc8b-46fe-499c-9895-a3635fad0153 + status: 200 OK + code: 200 + duration: 70.594363ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - afc46229-7e94-4bfa-8b9c-77068b55039e + status: 200 OK + code: 200 + duration: 87.443042ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b53acfb-5382-4d1c-8093-b4ab5e482057 + status: 200 OK + code: 200 + duration: 85.684104ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:52:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ddaa26ec-046b-4aa0-89f7-091266e55f7b + status: 200 OK + code: 200 + duration: 72.936098ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ce71895-0be3-478b-a7df-3ca4616b3e5b + status: 200 OK + code: 200 + duration: 60.323975ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34443a37-22a9-4802-994e-01e83e31de6a + status: 200 OK + code: 200 + duration: 62.11364ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d3d3cf9-9257-44df-8229-7b6579f318ba + status: 200 OK + code: 200 + duration: 77.295795ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3af78aa1-1012-4f10-9348-848e3d1b5120 + status: 200 OK + code: 200 + duration: 71.996079ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 184eb510-cc40-46bb-b076-1fad943d9399 + status: 200 OK + code: 200 + duration: 70.943606ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 134deb36-2fe2-4ffd-b380-8a918a644c96 + status: 200 OK + code: 200 + duration: 72.236066ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e1e425ae-2577-4d37-9648-36c8799e8605 + status: 200 OK + code: 200 + duration: 70.471999ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ea61232-777e-4b96-ab22-df95b2aa0d6b + status: 200 OK + code: 200 + duration: 77.026489ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2974d1cb-1376-425c-bbc4-178990c1bbb3 + status: 200 OK + code: 200 + duration: 67.424209ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 44b4a113-a235-4881-8315-79b83ce9c9ab + status: 200 OK + code: 200 + duration: 78.422844ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6dbb6e69-523a-4ec0-a56f-ebd51ae3b244 + status: 200 OK + code: 200 + duration: 91.986414ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:53:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04f4986f-e5d3-4275-8cb9-c88ad2406aa4 + status: 200 OK + code: 200 + duration: 76.054993ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ae000e80-ffc2-400a-92a1-5f12c45ddd3b + status: 200 OK + code: 200 + duration: 86.109932ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e54ab2bd-a209-45e1-be7f-8c61a8b52bb3 + status: 200 OK + code: 200 + duration: 72.721039ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe5f5096-2211-466e-84d5-aeae63164830 + status: 200 OK + code: 200 + duration: 64.814209ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d2c3c13-c33b-4062-8344-c6d9768466a7 + status: 200 OK + code: 200 + duration: 67.28ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a982f0f3-0d5a-48e3-bc21-16aaece9e6e2 + status: 200 OK + code: 200 + duration: 60.115805ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b0b659a-f5ee-4e1e-bf10-5da9baca40e4 + status: 200 OK + code: 200 + duration: 93.139805ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca6249d2-4843-4830-9634-a7a3e5fec11a + status: 200 OK + code: 200 + duration: 76.975173ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36a0abbd-7efb-4f73-824d-b4833a08f051 + status: 200 OK + code: 200 + duration: 79.3333ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd377545-71a1-4499-b02f-d65f8f41ea1c + status: 200 OK + code: 200 + duration: 59.193988ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a95b73b4-1a54-459c-8af1-034bb2552d00 + status: 200 OK + code: 200 + duration: 481.715793ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1b3b3f2a-9e49-48e5-9b6e-1e4385cdd323 + status: 200 OK + code: 200 + duration: 60.200679ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:54:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09389d0b-64eb-4134-b843-d02c27d09123 + status: 200 OK + code: 200 + duration: 80.762506ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 245686c3-4e31-4b1f-b6eb-49612476e308 + status: 200 OK + code: 200 + duration: 61.444996ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 67469965-9fc0-427b-bd82-5105096c411b + status: 200 OK + code: 200 + duration: 61.617716ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - beb6f719-33cd-4f92-8e85-0328f9c45aa0 + status: 200 OK + code: 200 + duration: 86.541979ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d72b9dd5-cad8-41ec-9821-72c2ec718c5b + status: 200 OK + code: 200 + duration: 173.539786ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 437862cf-558f-4792-84fa-c9636b4172e8 + status: 200 OK + code: 200 + duration: 73.834491ms + - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6102c19-c39f-4a0a-b0b3-1d4256dcf37b + status: 200 OK + code: 200 + duration: 74.756447ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:35 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d7296af-b960-420f-aa0f-cd98db6645af + status: 200 OK + code: 200 + duration: 292.062656ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:40 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5cb5b85e-ad72-42a6-9954-4a11cbeed19f + status: 200 OK + code: 200 + duration: 70.42677ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e1569120-247f-41f8-982d-4781a85d2488 + status: 200 OK + code: 200 + duration: 80.912634ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ebb19d7a-28f6-407d-a62b-0ed9fd67c454 + status: 200 OK + code: 200 + duration: 73.574227ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:55:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34c12f5b-0324-4e9a-8bf2-63e6ea7b804c + status: 200 OK + code: 200 + duration: 84.68357ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 709f1615-caa9-4802-a00a-80b5f9b052bd + status: 200 OK + code: 200 + duration: 73.581188ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b4f8acd2-7833-4b3d-aac6-4a4abf8b3b6b + status: 200 OK + code: 200 + duration: 65.291789ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3cd5cc42-8a6f-490e-8677-30652e68289e + status: 200 OK + code: 200 + duration: 72.790358ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:15 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6536b4f2-86e2-4d9c-b750-06f0ba3ab81e + status: 200 OK + code: 200 + duration: 59.421574ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:20 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b8680f0-635c-406b-bfb0-457d17553531 + status: 200 OK + code: 200 + duration: 72.154692ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d2a3713-15a0-4d3c-88bd-500d88b99ef9 + status: 200 OK + code: 200 + duration: 66.104254ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20ae2e7c-3972-4c9e-ab57-59beae8ba605 + status: 200 OK + code: 200 + duration: 86.834838ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b1a0b52-62b4-4aa2-8f38-da199cfd2f4c + status: 200 OK + code: 200 + duration: 146.759845ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6575499-ddef-4416-a3d9-92a282330013 + status: 200 OK + code: 200 + duration: 71.212165ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:46 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aca27593-991b-4c1e-93c6-d6088aa5b0f9 + status: 200 OK + code: 200 + duration: 69.150268ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 557895f9-341e-42b9-8dda-5d2d3f8177eb + status: 200 OK + code: 200 + duration: 62.595972ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:56:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ad9941c-f6c6-4051-b282-3cf34dad757d + status: 200 OK + code: 200 + duration: 75.822764ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab056dcd-f43d-4df3-9db9-31e81b03ef42 + status: 200 OK + code: 200 + duration: 56.997886ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:06 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b22362b4-947e-4caf-9769-db4de14c050d + status: 200 OK + code: 200 + duration: 85.201168ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ae9e433-deea-4df1-884e-ddad407a1544 + status: 200 OK + code: 200 + duration: 77.250125ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:16 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14276230-f1ee-4ca7-8052-1d23963d930c + status: 200 OK + code: 200 + duration: 78.29353ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:21 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e29b3071-357c-4e85-816c-d8e1ecc8977e + status: 200 OK + code: 200 + duration: 64.716942ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6483e1a7-a2a4-4e34-9133-eed49f024de0 + status: 200 OK + code: 200 + duration: 60.112774ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d382c988-349b-484b-bd49-241a45328c27 + status: 200 OK + code: 200 + duration: 74.363364ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42c6c464-8aa8-4740-bb74-f33b970b322c + status: 200 OK + code: 200 + duration: 70.441453ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 933892d1-91d4-4087-924d-649008422182 + status: 200 OK + code: 200 + duration: 77.394032ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e9267be3-46fd-4144-9455-c9ede53d8af2 + status: 200 OK + code: 200 + duration: 69.446994ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94d7e5ed-b51f-40f6-8eec-a68c2a40eec6 + status: 200 OK + code: 200 + duration: 70.438743ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:57:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9658396d-afbb-41a2-ad6e-5c4b5a8bf7bc + status: 200 OK + code: 200 + duration: 75.994563ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ce98b8c0-6eef-44ec-ac12-a4defe53b547 + status: 200 OK + code: 200 + duration: 77.103863ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:07 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 60921c7b-6876-438b-ad09-26ad48bcd873 + status: 200 OK + code: 200 + duration: 70.838509ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09e1ae8b-398f-4564-8eb9-676eae92ebd3 + status: 200 OK + code: 200 + duration: 74.254091ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3e63136a-9208-4a06-8e9c-94398a05b4dd + status: 200 OK + code: 200 + duration: 82.417192ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 157934c0-cacd-4a75-9efa-e774efd7b4d7 + status: 200 OK + code: 200 + duration: 109.393279ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:27 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf3acdb5-e2ec-4193-946c-2fd06d3b467e + status: 200 OK + code: 200 + duration: 69.241073ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:32 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0d7ceef-2619-4579-addb-6fb9c955959c + status: 200 OK + code: 200 + duration: 84.00712ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52f2d0e2-9232-42b1-b295-d889cd448db9 + status: 200 OK + code: 200 + duration: 71.648447ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aed290e3-10da-430c-ae1f-840a695593de + status: 200 OK + code: 200 + duration: 79.595337ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b15ed01f-6f30-408c-a036-b223e125e410 + status: 200 OK + code: 200 + duration: 68.017568ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b6dc472b-f555-45ba-8447-3f011fe5b0f2 + status: 200 OK + code: 200 + duration: 74.648768ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:58:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0fe467bc-e5d6-406d-873e-6c5dee5009d7 + status: 200 OK + code: 200 + duration: 71.396774ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f59787b-6c45-4e3e-9e7d-0b190f1e1b75 + status: 200 OK + code: 200 + duration: 31.848194ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30927e1e-ff03-4a5d-a951-1eac66f7deaf + status: 200 OK + code: 200 + duration: 66.826838ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:13 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6139ad80-6e39-442b-88dd-d466ecaf51dc + status: 200 OK + code: 200 + duration: 99.762788ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:18 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d51f453b-adaa-4535-b0c6-9bd097fab0d0 + status: 200 OK + code: 200 + duration: 30.333447ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:23 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc3be5b2-91d4-45e4-afc6-82ac606dab09 + status: 200 OK + code: 200 + duration: 73.939364ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:28 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88b2436f-32f6-4937-9ac6-1d2b78a412cf + status: 200 OK + code: 200 + duration: 69.628447ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:33 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f301898c-2fe0-49f1-8895-fc080989747d + status: 200 OK + code: 200 + duration: 30.785907ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:38 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d80a87be-42ab-49b8-81e1-aa78bde82d3e + status: 200 OK + code: 200 + duration: 72.587229ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1fe30ace-33aa-4c34-a303-4557f3e0f506 + status: 200 OK + code: 200 + duration: 87.45673ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ced2cfc0-17c6-46d3-abc9-77ea4847b444 + status: 200 OK + code: 200 + duration: 66.800867ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d1e7df3-8010-49ab-b6cb-5046cab58213 + status: 200 OK + code: 200 + duration: 37.103824ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 10:59:58 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6e9221c6-42a1-43d9-9dc3-806a41d9fea3 + status: 200 OK + code: 200 + duration: 61.490913ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92e4317e-8ba5-4c00-b78f-2a8d454c3b11 + status: 200 OK + code: 200 + duration: 48.765479ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f7adfd0c-e4ac-4d4f-9ed1-fb7d5960f0ef + status: 200 OK + code: 200 + duration: 145.41731ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 205fe802-f27c-4f2b-91de-6356ee6f0b4c + status: 200 OK + code: 200 + duration: 54.84241ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7fb93bf1-9554-4fd0-8112-dafdc0793d6a + status: 200 OK + code: 200 + duration: 72.339914ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c5f5c25-e74d-4f63-8be5-e935c969d697 + status: 200 OK + code: 200 + duration: 24.441632ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c042836e-1a69-4e36-bd16-b48be3f24243 + status: 200 OK + code: 200 + duration: 74.286104ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05eca2b3-6c79-490e-9ca6-f1c8cac534a0 + status: 200 OK + code: 200 + duration: 24.509824ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a81ea62-a1d8-47da-8e0a-1260aa509cb3 + status: 200 OK + code: 200 + duration: 66.564194ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:44 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4546bfb7-b8b4-41fe-975b-a3d8cd172dfa + status: 200 OK + code: 200 + duration: 26.791449ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5a00f99-b541-4876-9ffc-89e3ac0f6e81 + status: 200 OK + code: 200 + duration: 73.66845ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 571 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "571" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1af9da36-2ffb-409e-a34d-001cd6f2b24b + status: 200 OK + code: 200 + duration: 68.70999ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 564 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "564" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b611888e-462a-438c-aa59-46e7f4aa602d + status: 200 OK + code: 200 + duration: 261.246216ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 564 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "564" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:00:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c01ddfb-d1df-474c-bb5c-4192d0dea3c9 + status: 200 OK + code: 200 + duration: 68.2993ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 564 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "564" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5f258b4-5e80-4321-963b-9e2e10b4aa56 + status: 200 OK + code: 200 + duration: 33.781473ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 564 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "564" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4440ab9b-6c3c-4052-b1ac-603d979dbf95 + status: 200 OK + code: 200 + duration: 28.97176ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 564 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-initial","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["initial_tag1","initial_tag2"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "564" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dd1378a7-47fa-4c96-a002-a716ab3c4248 + status: 200 OK + code: 200 + duration: 63.42121ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 90 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-mongodb-update-final","tags":["updated_tag1","updated_tag2","updated_tag3"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 578 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "578" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 60a8efde-c028-4d51-ae1c-2ee0eae4106a + status: 200 OK + code: 200 + duration: 82.586907ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 31 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"password":"updated_password"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0/users/user + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 + uncompressed: false + body: '{"name":"user"}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be960c57-c451-4b3d-899a-184951a55e61 + status: 200 OK + code: 200 + duration: 602.296776ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 578 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "578" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af249db8-17d3-4b2f-a677-cd275949ce15 + status: 200 OK + code: 200 + duration: 68.910957ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 578 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "578" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd4b901a-c81e-4e08-83f0-5f9118cd7bf1 + status: 200 OK + code: 200 + duration: 67.697122ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 578 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "578" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 747e0059-4b8b-4cc6-ab25-d66073ec7bc0 + status: 200 OK + code: 200 + duration: 29.002306ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 578 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "578" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:03 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d2949f1-8eda-4657-bdc5-cd377604d3c5 + status: 200 OK + code: 200 + duration: 36.385314ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 578 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "578" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e649246-ae2c-4fd3-be9b-6429decc64f3 + status: 200 OK + code: 200 + duration: 78.135595ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3138dfbc-7409-447f-9ad4-8a064c82e523 + status: 200 OK + code: 200 + duration: 144.316345ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:04 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a49de2eb-d719-49c5-a34a-64e6fae3dae4 + status: 200 OK + code: 200 + duration: 74.880585ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:09 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 077bf0de-ce5a-461e-bf04-34080cb4f264 + status: 200 OK + code: 200 + duration: 68.923735ms + - id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:14 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35c6b28c-e2c1-4a34-bb08-b5ee6b57f0d1 + status: 200 OK + code: 200 + duration: 85.180439ms + - id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:19 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59d5d59a-7424-4f9d-b43d-72d6e0e87b60 + status: 200 OK + code: 200 + duration: 143.405398ms + - id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:24 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 949d40ac-12cd-48c0-b811-3adafd4e6b93 + status: 200 OK + code: 200 + duration: 64.392393ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:29 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb506950-b395-4a61-be06-2c0db5490e55 + status: 200 OK + code: 200 + duration: 65.233696ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:34 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d2bd842-604f-4541-b348-a057ac932854 + status: 200 OK + code: 200 + duration: 66.976891ms + - id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:39 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fbbff274-23db-42b5-9d97-17e7fac97bdb + status: 200 OK + code: 200 + duration: 57.425938ms + - id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 581 + uncompressed: false + body: '{"created_at":"2024-10-18T10:48:37.327207Z","endpoints":[{"dns_records":["f1834f0c-e241-428e-86f8-798e27d407e0.mgdb.fr-par.scw.cloud"],"id":"e86f80f1-2a88-4cce-a4ba-b64bd94bce1d","ips":[],"port":27017,"public":{}}],"id":"f1834f0c-e241-428e-86f8-798e27d407e0","name":"test-mongodb-update-final","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":["updated_tag1","updated_tag2","updated_tag3"],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "581" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:45 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5ef089a-890d-4026-a2c9-965d898e70cc + status: 200 OK + code: 200 + duration: 159.882067ms + - id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + 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":"f1834f0c-e241-428e-86f8-798e27d407e0","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83f54758-e0cd-4809-95c7-d25e8f01e745 + status: 404 Not Found + code: 404 + duration: 26.851693ms + - id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/f1834f0c-e241-428e-86f8-798e27d407e0 + 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":"f1834f0c-e241-428e-86f8-798e27d407e0","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 18 Oct 2024 11:01:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 311ea697-cf9c-4c12-8ac8-3a2daf8563c9 + status: 404 Not Found + code: 404 + duration: 24.942122ms diff --git a/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml index 2a5f5884fd..e0a5527eb9 100644 --- a/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-instance-volume-update.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -38,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:16 GMT + - Fri, 18 Oct 2024 10:48:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83dfea46-427f-4e55-8be4-d2a069095fa4 + - c5c0471d-1b1a-49e2-ad5a-a15aa58bf721 status: 200 OK code: 200 - duration: 338.043052ms + duration: 602.728496ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -87,7 +87,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:16 GMT + - Fri, 18 Oct 2024 10:48:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0453504-e156-4c8e-9d3a-0a4f2074fe14 + - 54903bc3-81e3-4367-b95c-cae2ed061e3e status: 200 OK code: 200 - duration: 83.930305ms + duration: 87.230555ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -136,7 +136,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:21 GMT + - Fri, 18 Oct 2024 10:48:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a703c524-2882-45aa-bb71-424addc478ce + - ef444037-a734-44a1-81aa-2703aca03533 status: 200 OK code: 200 - duration: 54.003058ms + duration: 99.683041ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -185,7 +185,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:27 GMT + - Fri, 18 Oct 2024 10:48:40 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1deb2688-30b2-454a-b518-04bcb491814a + - 85d5e7fd-c5f6-478e-8b41-25871b20c6d2 status: 200 OK code: 200 - duration: 103.899394ms + duration: 85.214125ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -234,7 +234,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:32 GMT + - Fri, 18 Oct 2024 10:48:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 186e8c9f-0420-4dbb-b236-694928fa4b50 + - 8a044b02-1843-45df-8e1c-2fb31424e611 status: 200 OK code: 200 - duration: 481.812125ms + duration: 62.089048ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -274,7 +274,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -283,7 +283,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:37 GMT + - Fri, 18 Oct 2024 10:48:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31d22c74-1a08-4565-aa1d-48bf3d8594e5 + - 2fd7d3b1-237c-42df-bdd6-f76106632e13 status: 200 OK code: 200 - duration: 69.626226ms + duration: 79.417365ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -332,7 +332,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:42 GMT + - Fri, 18 Oct 2024 10:48:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec13d254-419a-4b5e-ae9a-f11ff2b9f7b7 + - 2e24b270-c329-4db3-b51e-332dd4982dae status: 200 OK code: 200 - duration: 70.561503ms + duration: 73.304363ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -381,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:47 GMT + - Fri, 18 Oct 2024 10:49:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3035eb19-70e8-4ce5-8b48-c59d35be0bf8 + - cc79c5d8-9f03-42df-8d89-51c1eb2949b6 status: 200 OK code: 200 - duration: 71.160181ms + duration: 68.664176ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -430,7 +430,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:52 GMT + - Fri, 18 Oct 2024 10:49:06 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5c381b2-4dab-4b7b-b2cf-a927dc2a1893 + - 7d03d2e4-4ca8-4f3b-b942-9e0b522a36c4 status: 200 OK code: 200 - duration: 74.373065ms + duration: 64.977856ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -479,7 +479,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:19:57 GMT + - Fri, 18 Oct 2024 10:49:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e01852ad-7096-4ce5-ad41-ad6aa76cd9c8 + - 61f93437-bd70-4845-8403-09631494e381 status: 200 OK code: 200 - duration: 64.21048ms + duration: 76.390769ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -528,7 +528,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:03 GMT + - Fri, 18 Oct 2024 10:49:16 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db795d16-2c50-4880-9df3-34a06869c950 + - c594537f-7558-4b47-9610-6c15910ef8f1 status: 200 OK code: 200 - duration: 68.918395ms + duration: 69.692805ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -568,7 +568,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -577,7 +577,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:08 GMT + - Fri, 18 Oct 2024 10:49:21 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 499c9f66-44dc-4f0c-85c4-d5c0d085f593 + - 121faffe-2cf5-49e1-8bea-0d7f4437c8ef status: 200 OK code: 200 - duration: 83.722873ms + duration: 75.494696ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -617,7 +617,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -626,7 +626,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:13 GMT + - Fri, 18 Oct 2024 10:49:26 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1f14023-091e-4e58-ab33-76ab016c9e27 + - 19e80b4e-2f83-4c57-b78d-780852344a88 status: 200 OK code: 200 - duration: 71.029925ms + duration: 73.058525ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -666,7 +666,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -675,7 +675,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:18 GMT + - Fri, 18 Oct 2024 10:49:31 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3804d416-2c7c-48e8-91f2-4ca4cb45ac5f + - fc8f6483-2654-4887-9a5c-a08b1d97c36c status: 200 OK code: 200 - duration: 64.851137ms + duration: 70.419047ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -724,7 +724,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:23 GMT + - Fri, 18 Oct 2024 10:49:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 200fca49-b27d-4ad5-ae78-7ed6736adabf + - 63006666-6816-4272-8be4-15875165629f status: 200 OK code: 200 - duration: 87.286303ms + duration: 62.835629ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -773,7 +773,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:28 GMT + - Fri, 18 Oct 2024 10:49:41 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ea8bf7d-86c5-4749-ba63-98427bc4d949 + - ee585bb2-ea7a-4ce6-b70c-0882f54023fe status: 200 OK code: 200 - duration: 61.982249ms + duration: 207.575142ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -813,7 +813,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -822,7 +822,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:33 GMT + - Fri, 18 Oct 2024 10:49:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e1339ea-17d8-453c-af9e-138e26bd7fc4 + - 522e430b-e2e2-41bb-84fb-97ebcb341107 status: 200 OK code: 200 - duration: 87.265171ms + duration: 72.380876ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -862,7 +862,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -871,7 +871,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:38 GMT + - Fri, 18 Oct 2024 10:49:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77ff2374-c672-48e8-a7b6-d8a5ed37c203 + - 52e44aad-7ae2-4b93-b942-d36896a95354 status: 200 OK code: 200 - duration: 74.230881ms + duration: 83.21775ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -911,7 +911,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -920,7 +920,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:43 GMT + - Fri, 18 Oct 2024 10:49:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 516ca682-9ee1-46ed-a3e0-05cb7db89bd8 + - 54fa9c36-4530-42e2-ad0c-2ebb37846049 status: 200 OK code: 200 - duration: 69.475832ms + duration: 69.575023ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -960,7 +960,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -969,7 +969,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:48 GMT + - Fri, 18 Oct 2024 10:50:02 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec918fe8-57d3-4c57-9af7-d7167e0b3c63 + - 084ba9a9-3bf1-46aa-bd02-daec675ac17c status: 200 OK code: 200 - duration: 66.703899ms + duration: 74.412274ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1009,7 +1009,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1018,7 +1018,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:53 GMT + - Fri, 18 Oct 2024 10:50:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84f68976-1ad7-4a86-9519-66e76bfc407a + - 0af74e87-07c2-4820-b26a-59091aacea93 status: 200 OK code: 200 - duration: 80.789618ms + duration: 68.875138ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1067,7 +1067,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:20:58 GMT + - Fri, 18 Oct 2024 10:50:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1680e602-69d9-4375-9edc-6727d21de530 + - 670514d8-f23f-4ec8-a8b3-93ff7da1c3e8 status: 200 OK code: 200 - duration: 77.138923ms + duration: 77.802493ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1107,7 +1107,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1116,7 +1116,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:03 GMT + - Fri, 18 Oct 2024 10:50:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 846ee9a9-2ece-4ed2-a2b4-ea6bf0423bc3 + - 66b9b33e-78b2-4274-8f97-bdf4c6e6af4b status: 200 OK code: 200 - duration: 55.032542ms + duration: 78.544932ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1156,7 +1156,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1165,7 +1165,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:08 GMT + - Fri, 18 Oct 2024 10:50:22 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7f0edaa-55cd-4a9c-8b5a-3cd54eae3d3d + - 58f25870-3496-4055-bf3f-1f72c2dc0208 status: 200 OK code: 200 - duration: 71.918072ms + duration: 84.921375ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1205,7 +1205,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1214,7 +1214,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:14 GMT + - Fri, 18 Oct 2024 10:50:27 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7edb614-9b6d-4b21-9b83-ed38b2ce3c39 + - f6e18d30-9adc-4b5f-bd85-0c9f50f4e3a2 status: 200 OK code: 200 - duration: 78.046525ms + duration: 62.978622ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1254,7 +1254,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1263,7 +1263,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:19 GMT + - Fri, 18 Oct 2024 10:50:32 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfe806f8-5711-414e-bbd2-455725d20acb + - 25f51846-bbc6-43a9-9aac-d41ea125ec3c status: 200 OK code: 200 - duration: 77.502491ms + duration: 80.636298ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1303,7 +1303,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1312,7 +1312,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:24 GMT + - Fri, 18 Oct 2024 10:50:37 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19ea8ee2-f793-42e3-a2e8-d7b7b1e204c7 + - 814a15d3-a3ef-4654-a4e9-e7173654fa02 status: 200 OK code: 200 - duration: 56.613004ms + duration: 80.046319ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1352,7 +1352,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1361,7 +1361,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:29 GMT + - Fri, 18 Oct 2024 10:50:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91a5ea63-1654-4aab-92e1-573d4e53a624 + - 36ceb43f-6c58-42cc-a38a-9df4f92f2cf5 status: 200 OK code: 200 - duration: 60.625963ms + duration: 72.45113ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1401,7 +1401,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1410,7 +1410,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:34 GMT + - Fri, 18 Oct 2024 10:50:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbb88bb7-b6e6-4aa5-adc9-6b08db9d47e1 + - 8873a57d-784f-4e78-94cd-4a8972a6551d status: 200 OK code: 200 - duration: 64.821505ms + duration: 66.41437ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1450,7 +1450,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1459,7 +1459,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:39 GMT + - Fri, 18 Oct 2024 10:50:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cc567ce-ef07-407a-bd6d-099eee3ef458 + - 59242c9a-c7d1-44a3-9a1f-15a63c1a22c7 status: 200 OK code: 200 - duration: 77.031662ms + duration: 61.382805ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1499,7 +1499,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1508,7 +1508,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:44 GMT + - Fri, 18 Oct 2024 10:50:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1432a773-5c36-40a5-9247-cbaa4d27193c + - 4ea19cd8-8b14-4d0a-a067-622e48a2f085 status: 200 OK code: 200 - duration: 60.96633ms + duration: 129.307843ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1557,7 +1557,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:49 GMT + - Fri, 18 Oct 2024 10:51:03 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6301974-7fc2-4f68-b065-b892be08c1b8 + - 6fd3b3a4-1768-41ab-8376-1d730402f34e status: 200 OK code: 200 - duration: 84.32676ms + duration: 65.001596ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1597,7 +1597,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1606,7 +1606,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:54 GMT + - Fri, 18 Oct 2024 10:51:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5b5c1df-59a1-4e7a-834c-38ccebea69fc + - ea3a2c9d-6f23-48a7-b01a-297bad693f34 status: 200 OK code: 200 - duration: 72.867402ms + duration: 77.132915ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1646,7 +1646,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1655,7 +1655,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:21:59 GMT + - Fri, 18 Oct 2024 10:51:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c931de8-81da-4a9f-9b4c-8d24e890f9a3 + - 45ee26ed-2165-403f-9726-6515246f4985 status: 200 OK code: 200 - duration: 60.203911ms + duration: 73.095713ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1695,7 +1695,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1704,7 +1704,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:04 GMT + - Fri, 18 Oct 2024 10:51:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d5c5dc3-789c-482b-b766-10247e4a74e1 + - 016813db-63c0-4e2e-8387-846240a18e8e status: 200 OK code: 200 - duration: 79.544766ms + duration: 73.029497ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1744,7 +1744,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1753,7 +1753,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:09 GMT + - Fri, 18 Oct 2024 10:51:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b504497-d2e4-4747-95ae-c3ac9ae0df1c + - 7bfe99ff-8d2f-4973-acda-53c4480b1f60 status: 200 OK code: 200 - duration: 62.481678ms + duration: 78.656533ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1793,7 +1793,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1802,7 +1802,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:14 GMT + - Fri, 18 Oct 2024 10:51:28 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dff8e835-e8c1-45b1-b47b-4e3edb13817e + - d80d3060-623b-4a66-b539-807a9f36be9c status: 200 OK code: 200 - duration: 76.723782ms + duration: 82.847642ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1842,7 +1842,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1851,7 +1851,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:20 GMT + - Fri, 18 Oct 2024 10:51:33 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bd40459-1ed9-4a30-9ad0-57ff72e11467 + - 7495d0e1-11cd-4402-b61e-f5871e74c2dd status: 200 OK code: 200 - duration: 420.877166ms + duration: 64.59328ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1891,7 +1891,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1900,7 +1900,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:25 GMT + - Fri, 18 Oct 2024 10:51:38 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 926a8995-dd7a-4e05-8cf3-eaa32553ddc6 + - 702ec8c5-117d-46fc-b67d-7ec48a6a3589 status: 200 OK code: 200 - duration: 67.673927ms + duration: 67.701574ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1940,7 +1940,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1949,7 +1949,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:30 GMT + - Fri, 18 Oct 2024 10:51:43 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1959,10 +1959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2d6d7f8-83e5-4b3f-9cdd-e95abd132634 + - eece0416-6c19-4afb-a70e-a493185803aa status: 200 OK code: 200 - duration: 58.459885ms + duration: 87.716931ms - id: 40 request: proto: HTTP/1.1 @@ -1979,7 +1979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -1989,7 +1989,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -1998,7 +1998,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:35 GMT + - Fri, 18 Oct 2024 10:51:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2008,10 +2008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8be8c01d-28ed-4d23-be9e-3ff7a83883fe + - c0b1adcc-3b8e-4b28-aee7-50950c6c88d9 status: 200 OK code: 200 - duration: 73.051184ms + duration: 66.974466ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2038,7 +2038,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2047,7 +2047,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:40 GMT + - Fri, 18 Oct 2024 10:51:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2057,10 +2057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b65deed1-18e0-4b85-9b9c-6bdfe49cbc19 + - 4d72ef32-ca90-458d-bdc7-bc50e0118b64 status: 200 OK code: 200 - duration: 66.686305ms + duration: 66.619697ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2087,7 +2087,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2096,7 +2096,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:45 GMT + - Fri, 18 Oct 2024 10:51:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2106,10 +2106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58ffe97f-5be7-4dc6-88fc-22090f380d36 + - 3888d6c0-dcbc-40fa-aa68-efd624bfdd30 status: 200 OK code: 200 - duration: 87.571911ms + duration: 129.192966ms - id: 43 request: proto: HTTP/1.1 @@ -2126,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2136,7 +2136,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2145,7 +2145,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:50 GMT + - Fri, 18 Oct 2024 10:52:04 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2155,10 +2155,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a82dcf0d-8d0e-4237-b5d8-2ea6b7a7c85b + - 48034d44-f32d-4a7b-8f95-d3659a0f0db7 status: 200 OK code: 200 - duration: 57.393917ms + duration: 67.024811ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2185,7 +2185,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2194,7 +2194,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:22:55 GMT + - Fri, 18 Oct 2024 10:52:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2204,10 +2204,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85ed1821-5667-4bb6-b469-2b61e4189b60 + - a7391a82-d240-447b-99b6-4cae8b28f7dd status: 200 OK code: 200 - duration: 68.434916ms + duration: 81.72627ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2234,7 +2234,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2243,7 +2243,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:00 GMT + - Fri, 18 Oct 2024 10:52:14 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2253,10 +2253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e38b6d2a-3220-4f5d-8ebb-9eeb372833fb + - 263bbee4-8b31-48e9-b4dd-e188f16d66fd status: 200 OK code: 200 - duration: 78.660749ms + duration: 84.219619ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2283,7 +2283,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2292,7 +2292,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:05 GMT + - Fri, 18 Oct 2024 10:52:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2302,10 +2302,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a006e9e-a3da-499b-b72c-2603904d61f7 + - 6a2c8425-07dd-4d6f-9257-6763e18adcf2 status: 200 OK code: 200 - duration: 76.754841ms + duration: 67.965812ms - id: 47 request: proto: HTTP/1.1 @@ -2322,7 +2322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2332,7 +2332,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2341,7 +2341,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:11 GMT + - Fri, 18 Oct 2024 10:52:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2351,10 +2351,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 588cb5ab-ad3b-40fc-bbf6-900d28fa46ee + - 718e077a-b046-4d79-a6a4-f13d12f5e729 status: 200 OK code: 200 - duration: 61.501165ms + duration: 67.0105ms - id: 48 request: proto: HTTP/1.1 @@ -2371,7 +2371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2381,7 +2381,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2390,7 +2390,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:16 GMT + - Fri, 18 Oct 2024 10:52:29 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2400,10 +2400,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 757eff31-18d7-4dbd-86ba-d96b74bc4514 + - 184cb754-2f51-4306-9435-39ae818a70ce status: 200 OK code: 200 - duration: 60.477852ms + duration: 85.444095ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2430,7 +2430,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2439,7 +2439,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:21 GMT + - Fri, 18 Oct 2024 10:52:34 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2449,10 +2449,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed33e41a-9eb7-4a91-8ce1-22a55c6edf69 + - 9dd73cc9-f808-4107-a035-6b6c21eecfb5 status: 200 OK code: 200 - duration: 67.176405ms + duration: 74.149478ms - id: 50 request: proto: HTTP/1.1 @@ -2469,7 +2469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2479,7 +2479,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2488,7 +2488,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:26 GMT + - Fri, 18 Oct 2024 10:52:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2498,10 +2498,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6262a8c-cbc9-46ae-a910-35956ff91ea0 + - e3809043-d33c-4610-90a3-37e257104556 status: 200 OK code: 200 - duration: 65.916308ms + duration: 80.694448ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2528,7 +2528,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2537,7 +2537,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:31 GMT + - Fri, 18 Oct 2024 10:52:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2547,10 +2547,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42d94608-e9e3-48dd-b461-bc2d268afb1f + - 4b1188b2-6d6f-4480-950e-6e7e68d66680 status: 200 OK code: 200 - duration: 58.07702ms + duration: 66.973249ms - id: 52 request: proto: HTTP/1.1 @@ -2567,7 +2567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2577,7 +2577,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2586,7 +2586,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:36 GMT + - Fri, 18 Oct 2024 10:52:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2596,10 +2596,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c90dcd82-3b77-44b2-b140-4740f8b6b99d + - 215313f1-2cd6-4ee4-806e-5acfcdd5f057 status: 200 OK code: 200 - duration: 67.899314ms + duration: 67.186503ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2626,7 +2626,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2635,7 +2635,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:41 GMT + - Fri, 18 Oct 2024 10:52:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2645,10 +2645,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce985735-ced7-4b5b-915d-2eda851a2b02 + - e4dd0bd8-24b5-4028-93be-df19bf30c579 status: 200 OK code: 200 - duration: 63.34214ms + duration: 77.738612ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2675,7 +2675,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2684,7 +2684,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:46 GMT + - Fri, 18 Oct 2024 10:52:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2694,10 +2694,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e748cfcd-4c4f-477e-ba15-ed9d3d5bbef6 + - 883869fd-4e99-4d64-b5db-1dc869b40736 status: 200 OK code: 200 - duration: 61.158304ms + duration: 60.47409ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2724,7 +2724,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2733,7 +2733,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:51 GMT + - Fri, 18 Oct 2024 10:53:05 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2743,10 +2743,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90567f75-7bcb-4bbe-892a-56afe13c9655 + - 11c08a16-3435-406f-b9ac-beabcc1d8f0f status: 200 OK code: 200 - duration: 65.018803ms + duration: 98.690416ms - id: 56 request: proto: HTTP/1.1 @@ -2763,7 +2763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2773,7 +2773,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2782,7 +2782,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:23:56 GMT + - Fri, 18 Oct 2024 10:53:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2792,10 +2792,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a07d912-a7fc-477e-ab45-5d689c0335dd + - 07317eb8-8611-4860-aee1-d63735e853c1 status: 200 OK code: 200 - duration: 57.090814ms + duration: 75.633655ms - id: 57 request: proto: HTTP/1.1 @@ -2812,7 +2812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2822,7 +2822,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2831,7 +2831,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:01 GMT + - Fri, 18 Oct 2024 10:53:15 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2841,10 +2841,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fe689fe-7c30-43ad-881a-adfed8e1a138 + - b2952f27-5416-4fab-8733-4793a4889c60 status: 200 OK code: 200 - duration: 76.619437ms + duration: 79.630262ms - id: 58 request: proto: HTTP/1.1 @@ -2861,7 +2861,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2871,7 +2871,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2880,7 +2880,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:06 GMT + - Fri, 18 Oct 2024 10:53:20 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2890,10 +2890,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf19e155-100c-4aec-b3d2-a432ae375608 + - 0526d14c-c235-4963-8665-c66f25d8f609 status: 200 OK code: 200 - duration: 50.759957ms + duration: 76.949868ms - id: 59 request: proto: HTTP/1.1 @@ -2910,7 +2910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2920,7 +2920,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2929,7 +2929,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:11 GMT + - Fri, 18 Oct 2024 10:53:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2939,10 +2939,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebfcf9b3-6e40-4a2f-bc05-192faf389d86 + - e97cb91f-85b0-4055-bf82-ad3cec4e54a3 status: 200 OK code: 200 - duration: 99.696094ms + duration: 71.617272ms - id: 60 request: proto: HTTP/1.1 @@ -2959,7 +2959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -2969,7 +2969,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -2978,7 +2978,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:16 GMT + - Fri, 18 Oct 2024 10:53:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -2988,10 +2988,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e14069e3-4ad3-4769-908e-b5ed9e405531 + - 9014fa2d-4dea-433d-813e-036906707025 status: 200 OK code: 200 - duration: 68.871814ms + duration: 74.968208ms - id: 61 request: proto: HTTP/1.1 @@ -3008,7 +3008,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3018,7 +3018,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3027,7 +3027,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:21 GMT + - Fri, 18 Oct 2024 10:53:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3037,10 +3037,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 861854ee-f35e-4c2d-9d15-79755cdc8c46 + - 4dc52a61-7138-447a-b73c-da9658cb2201 status: 200 OK code: 200 - duration: 59.804087ms + duration: 69.535076ms - id: 62 request: proto: HTTP/1.1 @@ -3057,7 +3057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3067,7 +3067,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3076,7 +3076,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:27 GMT + - Fri, 18 Oct 2024 10:53:40 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3086,10 +3086,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66d36655-587b-419a-8021-bfc5f21c5896 + - 1e7999b9-a574-419a-bd23-287c837f7c56 status: 200 OK code: 200 - duration: 65.799495ms + duration: 71.340636ms - id: 63 request: proto: HTTP/1.1 @@ -3106,7 +3106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3116,7 +3116,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3125,7 +3125,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:32 GMT + - Fri, 18 Oct 2024 10:53:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3135,10 +3135,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb986c42-6f7f-4eaa-822a-dce6600bd1d1 + - 533fa81d-627d-4bde-95dd-76f5c31207be status: 200 OK code: 200 - duration: 66.332599ms + duration: 69.010831ms - id: 64 request: proto: HTTP/1.1 @@ -3155,7 +3155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3165,7 +3165,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3174,7 +3174,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:37 GMT + - Fri, 18 Oct 2024 10:53:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3184,10 +3184,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7173d59-315a-4ddd-a105-6c2450bd59ac + - 0d37f1ce-b21c-4b56-b1e9-c0eb746b8e4a status: 200 OK code: 200 - duration: 61.147746ms + duration: 91.735157ms - id: 65 request: proto: HTTP/1.1 @@ -3204,7 +3204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3214,7 +3214,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3223,7 +3223,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:42 GMT + - Fri, 18 Oct 2024 10:53:55 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3233,10 +3233,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23d94ec1-3652-4580-a20f-ed9b8f1b66c1 + - 7e92b944-0bcb-43f1-8c09-180100cf076b status: 200 OK code: 200 - duration: 140.803299ms + duration: 81.240917ms - id: 66 request: proto: HTTP/1.1 @@ -3253,7 +3253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3263,7 +3263,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3272,7 +3272,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:47 GMT + - Fri, 18 Oct 2024 10:54:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3282,10 +3282,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5659f4b5-9491-4b49-8807-c58fdbe151ed + - 19f36ff5-fbf2-4a4d-820b-bac47fee6a08 status: 200 OK code: 200 - duration: 64.459959ms + duration: 79.217527ms - id: 67 request: proto: HTTP/1.1 @@ -3302,7 +3302,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3312,7 +3312,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3321,7 +3321,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:52 GMT + - Fri, 18 Oct 2024 10:54:05 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3331,10 +3331,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8710192-7602-4c5d-a16a-dbbc2abc88e6 + - 376484d0-6a75-46ec-8784-848ae97676b0 status: 200 OK code: 200 - duration: 58.561085ms + duration: 68.12258ms - id: 68 request: proto: HTTP/1.1 @@ -3351,7 +3351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3361,7 +3361,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3370,7 +3370,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:24:57 GMT + - Fri, 18 Oct 2024 10:54:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3380,10 +3380,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 983c9f24-174a-4fe8-9196-1980041ae0e8 + - 822f67fd-0a1d-4026-919a-5508bfc992ad status: 200 OK code: 200 - duration: 60.767508ms + duration: 79.772385ms - id: 69 request: proto: HTTP/1.1 @@ -3400,7 +3400,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3410,7 +3410,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3419,7 +3419,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:02 GMT + - Fri, 18 Oct 2024 10:54:16 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3429,10 +3429,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a59ed04-ad79-4681-80bb-68142c6a6a0c + - 2cfc4fce-41df-4ebe-abfb-c4753138104d status: 200 OK code: 200 - duration: 71.123071ms + duration: 77.502728ms - id: 70 request: proto: HTTP/1.1 @@ -3449,7 +3449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3459,7 +3459,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3468,7 +3468,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:07 GMT + - Fri, 18 Oct 2024 10:54:21 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3478,10 +3478,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28a5ca97-873a-45f6-aee3-fc68a962dc0c + - 24ffcd14-0e17-4fe3-b9fb-ad0889dd985f status: 200 OK code: 200 - duration: 66.958767ms + duration: 74.776291ms - id: 71 request: proto: HTTP/1.1 @@ -3498,7 +3498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3508,7 +3508,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3517,7 +3517,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:12 GMT + - Fri, 18 Oct 2024 10:54:26 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3527,10 +3527,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41ae0e06-f41b-4537-b0d5-0734906d4160 + - 3bda2b6e-928e-4935-bb91-34cbdc6e2b0d status: 200 OK code: 200 - duration: 69.692121ms + duration: 75.095427ms - id: 72 request: proto: HTTP/1.1 @@ -3547,7 +3547,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3557,7 +3557,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3566,7 +3566,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:17 GMT + - Fri, 18 Oct 2024 10:54:31 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3576,10 +3576,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db8485db-9479-4e74-ac67-05cb192bffe6 + - 24264a18-7a2e-4526-b5cb-ba9999dc9126 status: 200 OK code: 200 - duration: 73.937085ms + duration: 92.266125ms - id: 73 request: proto: HTTP/1.1 @@ -3596,7 +3596,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3606,7 +3606,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3615,7 +3615,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:23 GMT + - Fri, 18 Oct 2024 10:54:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3625,10 +3625,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ea8cae4-8ae7-427e-82d3-26136742b37d + - 184e1529-948c-4d71-b889-89871cc7ee42 status: 200 OK code: 200 - duration: 222.117975ms + duration: 76.06546ms - id: 74 request: proto: HTTP/1.1 @@ -3645,7 +3645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3655,7 +3655,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3664,7 +3664,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:28 GMT + - Fri, 18 Oct 2024 10:54:41 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3674,10 +3674,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d03a8c9c-7721-4587-9c69-c81e63063338 + - b5e922fc-76cb-4e64-9ae7-65eb53ef9534 status: 200 OK code: 200 - duration: 64.5605ms + duration: 75.775862ms - id: 75 request: proto: HTTP/1.1 @@ -3694,7 +3694,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3704,7 +3704,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3713,7 +3713,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:33 GMT + - Fri, 18 Oct 2024 10:54:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3723,10 +3723,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bda6d493-ad90-4d22-b0fb-460a069cda6d + - bb8ad635-278c-40a0-a098-1d9f26a610f9 status: 200 OK code: 200 - duration: 67.851308ms + duration: 84.393691ms - id: 76 request: proto: HTTP/1.1 @@ -3743,7 +3743,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3753,7 +3753,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3762,7 +3762,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:38 GMT + - Fri, 18 Oct 2024 10:54:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3772,10 +3772,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05b93b4e-f695-4c81-b109-e848f8f437f7 + - 63b8683e-98ff-4bef-b244-2d19ab9191bf status: 200 OK code: 200 - duration: 55.773157ms + duration: 68.362414ms - id: 77 request: proto: HTTP/1.1 @@ -3792,7 +3792,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3802,7 +3802,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3811,7 +3811,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:43 GMT + - Fri, 18 Oct 2024 10:54:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3821,10 +3821,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c30d3608-960e-4f11-a554-6475173369c1 + - d10f57bf-2752-44b5-a723-6dc1289f651a status: 200 OK code: 200 - duration: 70.746442ms + duration: 67.711567ms - id: 78 request: proto: HTTP/1.1 @@ -3841,7 +3841,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3851,7 +3851,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3860,7 +3860,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:48 GMT + - Fri, 18 Oct 2024 10:55:01 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3870,10 +3870,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02f38841-6583-445b-b17c-b8b8f367b2cb + - 56516b16-eda2-46ab-83e8-b5f900296c73 status: 200 OK code: 200 - duration: 75.35731ms + duration: 91.693081ms - id: 79 request: proto: HTTP/1.1 @@ -3890,7 +3890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3900,7 +3900,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3909,7 +3909,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:53 GMT + - Fri, 18 Oct 2024 10:55:06 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3919,10 +3919,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6377e898-2408-4178-acd8-ec9bccfee6e5 + - f0a8f499-4645-46e6-a4ca-a7f1bff6cb38 status: 200 OK code: 200 - duration: 66.022594ms + duration: 85.020416ms - id: 80 request: proto: HTTP/1.1 @@ -3939,7 +3939,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3949,7 +3949,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -3958,7 +3958,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:25:58 GMT + - Fri, 18 Oct 2024 10:55:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -3968,10 +3968,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6559b0c0-24d0-40c4-9105-deaf37fcbc0c + - c4857c17-84f3-4af3-9742-5323d915d87d status: 200 OK code: 200 - duration: 52.940698ms + duration: 74.532488ms - id: 81 request: proto: HTTP/1.1 @@ -3988,7 +3988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -3998,7 +3998,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4007,7 +4007,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:03 GMT + - Fri, 18 Oct 2024 10:55:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4017,10 +4017,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af5e3108-de3c-4080-8970-e2e51096db67 + - 8de8f193-038b-4157-bb5e-ad9596aabf4a status: 200 OK code: 200 - duration: 66.922704ms + duration: 74.115906ms - id: 82 request: proto: HTTP/1.1 @@ -4037,7 +4037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4047,7 +4047,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4056,7 +4056,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:08 GMT + - Fri, 18 Oct 2024 10:55:22 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4066,10 +4066,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69684b71-8878-4b7b-8667-ded3019c2238 + - c2e23d3c-f29d-4e81-99d4-a8afb0edbde2 status: 200 OK code: 200 - duration: 67.321031ms + duration: 63.336018ms - id: 83 request: proto: HTTP/1.1 @@ -4086,7 +4086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4096,7 +4096,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4105,7 +4105,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:13 GMT + - Fri, 18 Oct 2024 10:55:27 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4115,10 +4115,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17532c5d-4b47-49ea-9f3b-c4dd75b2a93f + - 8f2118dc-49e3-4358-85b3-6719f33d8a9c status: 200 OK code: 200 - duration: 81.880726ms + duration: 75.250773ms - id: 84 request: proto: HTTP/1.1 @@ -4135,7 +4135,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4145,7 +4145,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4154,7 +4154,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:18 GMT + - Fri, 18 Oct 2024 10:55:32 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4164,10 +4164,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e56c568-5444-4f9b-96c9-d1252eb193a4 + - 43f6292f-15cd-48f7-8e72-d69c949874e1 status: 200 OK code: 200 - duration: 81.466105ms + duration: 92.956149ms - id: 85 request: proto: HTTP/1.1 @@ -4184,7 +4184,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4194,7 +4194,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4203,7 +4203,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:23 GMT + - Fri, 18 Oct 2024 10:55:37 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4213,10 +4213,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 193881df-85a3-4417-a421-975537bc77a2 + - 507bae0d-5d94-45af-8f3b-41d08aed5fb4 status: 200 OK code: 200 - duration: 71.378659ms + duration: 68.011369ms - id: 86 request: proto: HTTP/1.1 @@ -4233,7 +4233,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4243,7 +4243,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4252,7 +4252,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:28 GMT + - Fri, 18 Oct 2024 10:55:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4262,10 +4262,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d36136d-5c68-4052-a985-b2f6b07138b9 + - aa13290a-a686-48aa-9d61-18176f2ec1db status: 200 OK code: 200 - duration: 70.632483ms + duration: 66.30307ms - id: 87 request: proto: HTTP/1.1 @@ -4282,7 +4282,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4292,7 +4292,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4301,7 +4301,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:34 GMT + - Fri, 18 Oct 2024 10:55:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4311,10 +4311,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 614f14c1-1277-4183-936a-4dea4ec84769 + - 3f05c4b1-06f7-4f6d-b151-7a5ff45f71ed status: 200 OK code: 200 - duration: 78.146126ms + duration: 82.033729ms - id: 88 request: proto: HTTP/1.1 @@ -4331,7 +4331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4341,7 +4341,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4350,7 +4350,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:39 GMT + - Fri, 18 Oct 2024 10:55:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4360,10 +4360,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ef17c2c-9427-4423-9758-5f221afa5606 + - 52bac1ed-5939-420f-b016-32a754b98b8a status: 200 OK code: 200 - duration: 59.813512ms + duration: 72.951146ms - id: 89 request: proto: HTTP/1.1 @@ -4380,7 +4380,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4390,7 +4390,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4399,7 +4399,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:44 GMT + - Fri, 18 Oct 2024 10:55:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4409,10 +4409,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08b251a2-6db5-4444-b1bb-1101b9b387b9 + - 19218ac1-1665-4ead-98d1-37a7f229fd78 status: 200 OK code: 200 - duration: 68.647501ms + duration: 104.051617ms - id: 90 request: proto: HTTP/1.1 @@ -4429,7 +4429,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4439,7 +4439,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4448,7 +4448,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:49 GMT + - Fri, 18 Oct 2024 10:56:02 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4458,10 +4458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d836f858-08ff-4ff6-b09e-873606783c9d + - 942acfad-c1ae-4609-a2d2-1f08ac875da7 status: 200 OK code: 200 - duration: 57.737861ms + duration: 85.014621ms - id: 91 request: proto: HTTP/1.1 @@ -4478,7 +4478,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4488,7 +4488,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4497,7 +4497,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:54 GMT + - Fri, 18 Oct 2024 10:56:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4507,10 +4507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b3fc569-eaba-4abb-af5b-5a408386c115 + - 97288097-097d-4d58-a63d-31025e640fdb status: 200 OK code: 200 - duration: 64.354315ms + duration: 82.764993ms - id: 92 request: proto: HTTP/1.1 @@ -4527,7 +4527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4537,7 +4537,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4546,7 +4546,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:26:59 GMT + - Fri, 18 Oct 2024 10:56:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4556,10 +4556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9a7edd8-f270-4447-a2f7-31563112bdee + - fefaed44-9d30-48fb-a5dc-ef9b044d29bb status: 200 OK code: 200 - duration: 65.86939ms + duration: 61.895203ms - id: 93 request: proto: HTTP/1.1 @@ -4576,7 +4576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4586,7 +4586,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4595,7 +4595,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:04 GMT + - Fri, 18 Oct 2024 10:56:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4605,10 +4605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6635ece3-381e-499a-8526-7002ed6fccc5 + - 44ccb50e-8be7-4505-bd8f-1a995f91193e status: 200 OK code: 200 - duration: 59.713116ms + duration: 52.246673ms - id: 94 request: proto: HTTP/1.1 @@ -4625,7 +4625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4635,7 +4635,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4644,7 +4644,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:09 GMT + - Fri, 18 Oct 2024 10:56:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4654,10 +4654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 225059d7-9ac7-4f07-ad6c-fcecb34944ca + - 62cdba31-5022-4def-a0ee-a17a878b0e94 status: 200 OK code: 200 - duration: 64.696021ms + duration: 73.138741ms - id: 95 request: proto: HTTP/1.1 @@ -4674,7 +4674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4684,7 +4684,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4693,7 +4693,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:14 GMT + - Fri, 18 Oct 2024 10:56:28 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4703,10 +4703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2becf00e-dccf-4f7a-82cb-881f744a3e07 + - b2efa17e-d6f0-483f-9d33-05ea73f6629b status: 200 OK code: 200 - duration: 69.954391ms + duration: 70.346385ms - id: 96 request: proto: HTTP/1.1 @@ -4723,7 +4723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4733,7 +4733,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4742,7 +4742,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:19 GMT + - Fri, 18 Oct 2024 10:56:33 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4752,10 +4752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4700890-9b16-4335-b787-dba946424298 + - 41e7df24-0fcc-4331-8ccc-db5dbc35b3e9 status: 200 OK code: 200 - duration: 55.023952ms + duration: 62.669541ms - id: 97 request: proto: HTTP/1.1 @@ -4772,7 +4772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4782,7 +4782,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4791,7 +4791,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:24 GMT + - Fri, 18 Oct 2024 10:56:38 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4801,10 +4801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b3f69bc-2474-4452-8f51-be103fd8a204 + - 36646531-95c7-41a5-8bda-ddab28f22abf status: 200 OK code: 200 - duration: 74.491774ms + duration: 76.447955ms - id: 98 request: proto: HTTP/1.1 @@ -4821,7 +4821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4831,7 +4831,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4840,7 +4840,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:29 GMT + - Fri, 18 Oct 2024 10:56:43 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4850,10 +4850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a19927bc-f8f0-490d-81c7-2071606d4311 + - b0c33bc6-35d8-4011-9392-36395e739113 status: 200 OK code: 200 - duration: 79.03509ms + duration: 87.400599ms - id: 99 request: proto: HTTP/1.1 @@ -4870,7 +4870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4880,7 +4880,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4889,7 +4889,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:34 GMT + - Fri, 18 Oct 2024 10:56:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4899,10 +4899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea4a3e12-68a4-4b67-a0f3-03b475670f07 + - b655e5b8-db2a-4eca-834b-9fff42db8844 status: 200 OK code: 200 - duration: 51.798779ms + duration: 63.291812ms - id: 100 request: proto: HTTP/1.1 @@ -4919,7 +4919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4929,7 +4929,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4938,7 +4938,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:39 GMT + - Fri, 18 Oct 2024 10:56:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4948,10 +4948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4874e37-3809-44ac-b38f-3cb9d4856d98 + - 576e4356-555e-4d84-93b8-d3143c966284 status: 200 OK code: 200 - duration: 65.611534ms + duration: 62.433736ms - id: 101 request: proto: HTTP/1.1 @@ -4968,7 +4968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -4978,7 +4978,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -4987,7 +4987,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:44 GMT + - Fri, 18 Oct 2024 10:56:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -4997,10 +4997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb03ee39-b713-4afd-9b37-29a09a6ab98e + - c308ff06-5124-4c79-a675-5b595884b1ac status: 200 OK code: 200 - duration: 58.557369ms + duration: 68.851634ms - id: 102 request: proto: HTTP/1.1 @@ -5017,7 +5017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5027,7 +5027,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5036,7 +5036,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:50 GMT + - Fri, 18 Oct 2024 10:57:03 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5046,10 +5046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ddc2d44-c7b6-42d6-9084-d12ed2bea8d5 + - a0619d8f-3197-4518-bd19-e35a4fab2172 status: 200 OK code: 200 - duration: 173.050858ms + duration: 71.963171ms - id: 103 request: proto: HTTP/1.1 @@ -5066,7 +5066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5076,7 +5076,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5085,7 +5085,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:27:55 GMT + - Fri, 18 Oct 2024 10:57:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5095,10 +5095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97e8ab15-f72d-4858-8099-b0e1c02d2cc7 + - 02e89468-4402-4bbb-b658-301564c91b86 status: 200 OK code: 200 - duration: 68.099713ms + duration: 77.406155ms - id: 104 request: proto: HTTP/1.1 @@ -5115,7 +5115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5125,7 +5125,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5134,7 +5134,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:00 GMT + - Fri, 18 Oct 2024 10:57:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5144,10 +5144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 443efc3a-936f-49a2-b996-2b45c7e6de09 + - abb73ca0-b0c3-47aa-bdef-3412ba6b7b20 status: 200 OK code: 200 - duration: 72.549668ms + duration: 74.417693ms - id: 105 request: proto: HTTP/1.1 @@ -5164,7 +5164,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5174,7 +5174,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5183,7 +5183,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:05 GMT + - Fri, 18 Oct 2024 10:57:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5193,10 +5193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e6a225c-dc26-4fb9-918d-c947b436e4e1 + - 6974700e-8dc1-4ddf-a852-58df8e870503 status: 200 OK code: 200 - duration: 63.821523ms + duration: 75.963392ms - id: 106 request: proto: HTTP/1.1 @@ -5213,7 +5213,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5223,7 +5223,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5232,7 +5232,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:10 GMT + - Fri, 18 Oct 2024 10:57:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5242,10 +5242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bb8840d-759e-43f6-8157-2f27ab73e98e + - a9c95304-f170-4174-b302-9e5e0cb32d46 status: 200 OK code: 200 - duration: 72.983557ms + duration: 60.129771ms - id: 107 request: proto: HTTP/1.1 @@ -5262,7 +5262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5272,7 +5272,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5281,7 +5281,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:15 GMT + - Fri, 18 Oct 2024 10:57:29 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5291,10 +5291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb4a549b-51fd-4e96-a271-47ab45ac0fac + - 2ee81f95-1a32-471b-98b4-db6af76c6175 status: 200 OK code: 200 - duration: 56.945215ms + duration: 86.800035ms - id: 108 request: proto: HTTP/1.1 @@ -5311,7 +5311,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5321,7 +5321,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5330,7 +5330,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:20 GMT + - Fri, 18 Oct 2024 10:57:34 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5340,10 +5340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de57e706-510f-4318-9f4e-1063a0818521 + - 719c4aa5-1dc0-4419-aed6-9641c8b7e94f status: 200 OK code: 200 - duration: 75.582724ms + duration: 81.02781ms - id: 109 request: proto: HTTP/1.1 @@ -5360,7 +5360,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5370,7 +5370,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5379,7 +5379,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:25 GMT + - Fri, 18 Oct 2024 10:57:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5389,10 +5389,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 305a9cd8-84ad-467d-b2fc-83c99e26688a + - d3249c91-50d3-461d-97cf-545d27d37407 status: 200 OK code: 200 - duration: 76.060292ms + duration: 61.276579ms - id: 110 request: proto: HTTP/1.1 @@ -5409,7 +5409,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5419,7 +5419,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5428,7 +5428,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:30 GMT + - Fri, 18 Oct 2024 10:57:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5438,10 +5438,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 223a5258-f909-4703-be2f-f0a8a4f0d2ca + - 183df974-64ba-40c6-8f7f-804f7a16bdec status: 200 OK code: 200 - duration: 68.884837ms + duration: 68.419069ms - id: 111 request: proto: HTTP/1.1 @@ -5458,7 +5458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5468,7 +5468,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5477,7 +5477,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:35 GMT + - Fri, 18 Oct 2024 10:57:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5487,10 +5487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ad6a840-e777-4f77-9797-fb6670f99e3f + - fdcbd607-209e-49e8-8894-0a453bc8da36 status: 200 OK code: 200 - duration: 85.169826ms + duration: 81.778552ms - id: 112 request: proto: HTTP/1.1 @@ -5507,7 +5507,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5517,7 +5517,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5526,7 +5526,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:40 GMT + - Fri, 18 Oct 2024 10:57:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5536,10 +5536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3e75dc8-f3be-454c-a082-b821431ccd58 + - 9e04ccca-c744-45a5-a0ef-d69d071df8f2 status: 200 OK code: 200 - duration: 67.381027ms + duration: 65.558951ms - id: 113 request: proto: HTTP/1.1 @@ -5556,7 +5556,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5566,7 +5566,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5575,7 +5575,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:45 GMT + - Fri, 18 Oct 2024 10:57:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5585,10 +5585,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66df933c-ce76-4df8-b016-497b365735d7 + - a29ff010-0ad0-4419-9c12-74d0ce33dd32 status: 200 OK code: 200 - duration: 72.333426ms + duration: 69.435878ms - id: 114 request: proto: HTTP/1.1 @@ -5605,7 +5605,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5615,7 +5615,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5624,7 +5624,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:50 GMT + - Fri, 18 Oct 2024 10:58:04 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5634,10 +5634,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb890195-db3d-446e-b7bf-addb42f6f93a + - e3545524-3e5e-4071-97a2-383e46d8ae49 status: 200 OK code: 200 - duration: 73.949626ms + duration: 74.23258ms - id: 115 request: proto: HTTP/1.1 @@ -5654,7 +5654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5664,7 +5664,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5673,7 +5673,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:28:56 GMT + - Fri, 18 Oct 2024 10:58:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5683,10 +5683,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb394583-7fb8-449c-baf6-a9e72c3c398b + - 6d46fe4e-3aff-4374-8b8a-f84f67f2cfe5 status: 200 OK code: 200 - duration: 59.032135ms + duration: 77.37313ms - id: 116 request: proto: HTTP/1.1 @@ -5703,7 +5703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5713,7 +5713,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5722,7 +5722,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:29:01 GMT + - Fri, 18 Oct 2024 10:58:14 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5732,10 +5732,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f392251-9a12-49aa-9604-83ad25b10e7f + - 62aa73ff-98d6-41df-8341-ccadb4ec4c1c status: 200 OK code: 200 - duration: 63.056066ms + duration: 86.443041ms - id: 117 request: proto: HTTP/1.1 @@ -5752,7 +5752,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5762,7 +5762,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5771,7 +5771,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:29:06 GMT + - Fri, 18 Oct 2024 10:58:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5781,10 +5781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4626d578-3e2b-4c99-ae87-0bd9a07ab05e + - d17829c2-1482-4273-a1b7-e4116de541e0 status: 200 OK code: 200 - duration: 67.799972ms + duration: 70.962697ms - id: 118 request: proto: HTTP/1.1 @@ -5801,7 +5801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5811,7 +5811,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5820,7 +5820,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:29:11 GMT + - Fri, 18 Oct 2024 10:58:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5830,10 +5830,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64f5caa6-7eb5-47d9-be78-eb72c44c4e71 + - 0ce67dfa-2f61-4637-8641-d38d9894f953 status: 200 OK code: 200 - duration: 70.088804ms + duration: 74.577069ms - id: 119 request: proto: HTTP/1.1 @@ -5850,7 +5850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -5860,7 +5860,7 @@ interactions: trailer: {} content_length: 541 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "541" @@ -5869,7 +5869,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:29:16 GMT + - Fri, 18 Oct 2024 10:58:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -5879,10 +5879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 477971e4-3b57-4e2b-adf2-b22b98949bc6 + - 2ddc0775-fb1a-4adb-a014-0621716e1725 status: 200 OK code: 200 - duration: 59.956253ms + duration: 74.993895ms - id: 120 request: proto: HTTP/1.1 @@ -5899,1771 +5899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52a1e914-8247-4724-a7b9-1dbaf239fc93 - status: 200 OK - code: 200 - duration: 85.467241ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1cd67945-024f-496a-825e-95ce338a8455 - status: 200 OK - code: 200 - duration: 59.5168ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 70fa8ae6-af42-474f-adf3-620604bbbe2d - status: 200 OK - code: 200 - duration: 69.341067ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dece1c57-2e91-4cfe-b933-9275819dedf5 - status: 200 OK - code: 200 - duration: 64.945293ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de41439f-7e6d-4fc5-ad3d-0a490f4487bb - status: 200 OK - code: 200 - duration: 82.698236ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fa9ce1c9-6ff2-486d-974c-3813005c1dda - status: 200 OK - code: 200 - duration: 54.165466ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 033ee30e-feb9-43bb-ac0f-2ea7257189b0 - status: 200 OK - code: 200 - duration: 71.885982ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:29:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d769859b-6ae3-4aad-a3ef-5b87e3ff79e4 - status: 200 OK - code: 200 - duration: 429.612691ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ba111efc-a81e-4dcf-9076-ffdb16a3e293 - status: 200 OK - code: 200 - duration: 62.326287ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5a0c9300-6ad6-4895-8b74-0d33af4b8edc - status: 200 OK - code: 200 - duration: 71.014355ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 834a9a7d-91ab-44a3-a549-f1e2ccc57dc2 - status: 200 OK - code: 200 - duration: 64.090068ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec67bd0d-a3f7-4371-80ac-fbf7f67c5e33 - status: 200 OK - code: 200 - duration: 82.561432ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d6bc4233-dc3c-4042-974d-f97ae837c5a6 - status: 200 OK - code: 200 - duration: 70.067103ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 140b47f9-5951-4878-bb93-f59d81a4ad6d - status: 200 OK - code: 200 - duration: 70.091483ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 706c5935-273c-46ab-ba76-0f455e748995 - status: 200 OK - code: 200 - duration: 59.208629ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6397f824-152b-4269-8938-54775a0414c2 - status: 200 OK - code: 200 - duration: 67.304407ms - - id: 136 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f0bba60f-bbb7-4a1c-ae36-7624a4be4841 - status: 200 OK - code: 200 - duration: 63.521879ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5a8d9e83-e172-4038-ad34-5c85bfb2ba66 - status: 200 OK - code: 200 - duration: 79.862202ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7e7b3a8f-e21b-499a-b0df-84ed721cfa25 - status: 200 OK - code: 200 - duration: 52.676927ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:30:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e5875ced-1700-4aed-b5f6-f906cda48162 - status: 200 OK - code: 200 - duration: 76.129019ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a700869-7fb4-4502-b7be-821a4a7f662b - status: 200 OK - code: 200 - duration: 64.307362ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:08 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d6ca7a05-8ec8-4ffb-8f7e-731a9d3788b1 - status: 200 OK - code: 200 - duration: 60.373302ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:13 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cf12e43a-d070-480d-9a2a-7d5ff4d0b017 - status: 200 OK - code: 200 - duration: 71.735599ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 69ee8a3c-bfa1-4f6e-8f15-203a4a206f27 - status: 200 OK - code: 200 - duration: 66.66051ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 556ce618-4c59-4902-8abf-0fe3c830fb63 - status: 200 OK - code: 200 - duration: 70.875754ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 41d74dd2-c84d-4433-91d4-e7d97f440af7 - status: 200 OK - code: 200 - duration: 61.786677ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 46c6a8e3-606d-49fd-a105-808c4874c60c - status: 200 OK - code: 200 - duration: 72.027484ms - - id: 147 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ea72ef4-ad16-420d-a197-1a7a8466bbc8 - status: 200 OK - code: 200 - duration: 75.494271ms - - id: 148 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b7adf8a8-e75c-4bfc-b6db-b5af5ff4b5b1 - status: 200 OK - code: 200 - duration: 76.429922ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7cfcad19-022d-4f30-8884-fd4635c4f8f0 - status: 200 OK - code: 200 - duration: 78.720666ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e6d19006-796e-494b-b87d-b1d92cffe200 - status: 200 OK - code: 200 - duration: 63.516231ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:31:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c66ff772-6b5b-4610-b281-16c77f8bc20e - status: 200 OK - code: 200 - duration: 65.529381ms - - id: 152 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 541 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "541" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b716aaa-fe08-4ec3-a824-fab8717a9737 - status: 200 OK - code: 200 - duration: 68.544181ms - - id: 153 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8c3f880-3588-4558-be26-97f91deb537d - status: 200 OK - code: 200 - duration: 90.609606ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 70995f41-986e-48fb-811b-78910ea866e9 - status: 200 OK - code: 200 - duration: 72.983073ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:32:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d20fa015-b2ba-4b81-b122-e6d422bb1308 - status: 200 OK - code: 200 - duration: 26.255727ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -7673,7 +5909,7 @@ interactions: trailer: {} content_length: 534 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "534" @@ -7682,7 +5918,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:09 GMT + - Fri, 18 Oct 2024 10:58:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7692,11 +5928,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77898fef-588c-4255-840b-80ddbdef4955 + - a7f67163-e34b-4a68-860d-d0074d3c6fa1 status: 200 OK code: 200 - duration: 31.062059ms - - id: 157 + duration: 65.957299ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -7712,7 +5948,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -7722,7 +5958,7 @@ interactions: trailer: {} content_length: 534 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "534" @@ -7731,7 +5967,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:10 GMT + - Fri, 18 Oct 2024 10:58:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7741,48 +5977,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c4cd9ee-be6c-43fc-a863-337e32a3259e + - 128a6037-04c7-434f-8f97-d42cb183ac5d status: 200 OK code: 200 - duration: 68.831969ms - - id: 158 + duration: 30.176242ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 27 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_size":10000000000}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105/upgrade - method: POST + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 534 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "542" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:11 GMT + - Fri, 18 Oct 2024 10:58:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7792,11 +6026,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1df5810b-7526-42ff-9ce5-9665d2205c8b + - d68c1982-329c-417a-9e62-acd9cd82bc5b status: 200 OK code: 200 - duration: 136.535511ms - - id: 159 + duration: 68.807366ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -7812,7 +6046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -7820,18 +6054,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 534 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "542" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:11 GMT + - Fri, 18 Oct 2024 10:58:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7841,11 +6075,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e170ea96-f6d5-4155-a930-5f0982b72076 + - 49253199-07d7-4e99-970a-2d9dae0722c5 status: 200 OK code: 200 - duration: 26.054858ms - - id: 160 + duration: 34.138268ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -7861,7 +6095,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -7869,18 +6103,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 534 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "542" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:16 GMT + - Fri, 18 Oct 2024 10:58:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7890,28 +6124,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 122a57b6-4377-4ff0-b45e-b3cb567da80b + - e7a8f8e2-16fa-44bc-b22d-4703cf1e248e status: 200 OK code: 200 - duration: 70.571805ms - - id: 161 + duration: 71.645652ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 27 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_size":10000000000}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7/upgrade + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -7920,7 +6156,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -7929,7 +6165,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:21 GMT + - Fri, 18 Oct 2024 10:58:37 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7939,11 +6175,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c613eb9a-a2bb-4daa-a1a7-0b859f7a93c3 + - 5cc8e41b-4727-41a6-bdbb-a9f24188c604 status: 200 OK code: 200 - duration: 66.475959ms - - id: 162 + duration: 227.258853ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -7959,7 +6195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -7969,7 +6205,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -7978,7 +6214,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:26 GMT + - Fri, 18 Oct 2024 10:58:37 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -7988,11 +6224,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 762e1483-2f3d-43ff-9713-20cf9b38bd22 + - 1ace3d9d-858d-47b6-8d21-c785b64d9b39 status: 200 OK code: 200 - duration: 34.048919ms - - id: 163 + duration: 27.426157ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -8008,7 +6244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8018,7 +6254,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8027,7 +6263,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:31 GMT + - Fri, 18 Oct 2024 10:58:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8037,11 +6273,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7ef71fb-f3fe-4a7d-aa9f-00553f6707ad + - f6eba942-5f45-494a-8127-b19f8a11ed07 status: 200 OK code: 200 - duration: 50.663675ms - - id: 164 + duration: 77.832467ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -8057,7 +6293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8067,7 +6303,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8076,7 +6312,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:36 GMT + - Fri, 18 Oct 2024 10:58:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8086,11 +6322,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 101d1374-a385-4bb0-aa74-51acf754e99b + - 2b3f5e48-73fe-44dc-b03c-5ea9ae111450 status: 200 OK code: 200 - duration: 24.565604ms - - id: 165 + duration: 73.292854ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -8106,7 +6342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8116,7 +6352,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8125,7 +6361,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:41 GMT + - Fri, 18 Oct 2024 10:58:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8135,11 +6371,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bc33a8c-4acc-4175-9878-f092fda77f20 + - c811032d-8b7d-4543-a16d-d375fbffe329 status: 200 OK code: 200 - duration: 26.187648ms - - id: 166 + duration: 58.915242ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -8155,7 +6391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8165,7 +6401,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8174,7 +6410,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:46 GMT + - Fri, 18 Oct 2024 10:58:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8184,11 +6420,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49b86eb2-4af3-4c0a-81a6-2cc5b9e4dc95 + - c2f605ef-dc86-478d-9db8-0f4f3b136250 status: 200 OK code: 200 - duration: 68.756379ms - - id: 167 + duration: 91.355621ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -8204,7 +6440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8214,7 +6450,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8223,7 +6459,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:51 GMT + - Fri, 18 Oct 2024 10:59:02 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8233,11 +6469,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7c6de05-d922-4cfc-a8ae-a517864a9b11 + - 4e5147db-7308-45aa-b8bf-fcf7f12255af status: 200 OK code: 200 - duration: 73.794458ms - - id: 168 + duration: 66.768431ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -8253,7 +6489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8263,7 +6499,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8272,7 +6508,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:32:56 GMT + - Fri, 18 Oct 2024 10:59:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8282,11 +6518,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1163465-151b-46c0-88e0-b90563e78de9 + - 3cb5c9ef-02c7-42cf-853b-93bf1aaf9c39 status: 200 OK code: 200 - duration: 64.455874ms - - id: 169 + duration: 63.081085ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -8302,7 +6538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8312,7 +6548,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8321,7 +6557,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:01 GMT + - Fri, 18 Oct 2024 10:59:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8331,11 +6567,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4d31f05-0bc7-4bc7-b67f-f8537b5ae446 + - 272432fa-fd19-4a70-bd23-3d4470ee041c status: 200 OK code: 200 - duration: 58.463467ms - - id: 170 + duration: 65.740162ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -8351,7 +6587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8361,7 +6597,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8370,7 +6606,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:06 GMT + - Fri, 18 Oct 2024 10:59:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8380,11 +6616,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46a21c3d-8791-47a2-95c7-1e0698fb2275 + - 82b972d6-90ac-443b-8a98-f6c255928acf status: 200 OK code: 200 - duration: 73.138665ms - - id: 171 + duration: 66.068818ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -8400,7 +6636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8410,7 +6646,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8419,7 +6655,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:11 GMT + - Fri, 18 Oct 2024 10:59:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8429,11 +6665,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f1304e2-b033-45c8-8dd5-7be65276bef2 + - dfa242be-25bf-4497-bc31-53cc45564f70 status: 200 OK code: 200 - duration: 58.971831ms - - id: 172 + duration: 84.678987ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -8449,7 +6685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8459,7 +6695,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8468,7 +6704,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:17 GMT + - Fri, 18 Oct 2024 10:59:28 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8478,11 +6714,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6949320-41a8-4e49-8f6c-c3e699b36f74 + - e68eaa64-a945-4069-b6b4-f62364576b4d status: 200 OK code: 200 - duration: 88.220432ms - - id: 173 + duration: 75.440944ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -8498,7 +6734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8508,7 +6744,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8517,7 +6753,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:22 GMT + - Fri, 18 Oct 2024 10:59:33 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8527,11 +6763,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31f1fa19-d90b-4422-a288-5de9e04beee4 + - 41953109-296e-424a-922a-ca4a2ed4f254 status: 200 OK code: 200 - duration: 57.728602ms - - id: 174 + duration: 77.89139ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -8547,7 +6783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8557,7 +6793,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8566,7 +6802,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:27 GMT + - Fri, 18 Oct 2024 10:59:38 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8576,11 +6812,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa71fd66-8a63-49b8-8672-4f92c670009b + - b0f89109-6293-479b-b63f-09a620be7b45 status: 200 OK code: 200 - duration: 39.869655ms - - id: 175 + duration: 65.343703ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -8596,7 +6832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8606,7 +6842,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8615,7 +6851,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:32 GMT + - Fri, 18 Oct 2024 10:59:43 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8625,11 +6861,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76faf50b-6dd4-4766-89d3-f1af856b76d0 + - e84fbf02-f217-4047-9216-ce857f5046f7 status: 200 OK code: 200 - duration: 63.30882ms - - id: 176 + duration: 86.932476ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -8645,7 +6881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8655,7 +6891,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8664,7 +6900,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:37 GMT + - Fri, 18 Oct 2024 10:59:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8674,11 +6910,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5918afc-3f19-48d7-8dfa-b861154b42b7 + - 3a6f115b-6f44-44cc-bcfe-c376f9fef165 status: 200 OK code: 200 - duration: 63.671481ms - - id: 177 + duration: 68.775759ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -8694,7 +6930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8704,7 +6940,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8713,7 +6949,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:42 GMT + - Fri, 18 Oct 2024 10:59:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8723,11 +6959,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c43d105e-0a90-497f-acd7-0b657b7af8dd + - bfb275c1-a0a8-47e0-98a5-f8d72bb31755 status: 200 OK code: 200 - duration: 70.325967ms - - id: 178 + duration: 66.684649ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -8743,7 +6979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8753,7 +6989,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8762,7 +6998,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:47 GMT + - Fri, 18 Oct 2024 10:59:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8772,11 +7008,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d266bdf3-e6ec-433f-b60c-60730e3e1f45 + - 6967689e-0b19-4bf0-8c97-7dbeaed51745 status: 200 OK code: 200 - duration: 73.442029ms - - id: 179 + duration: 67.535132ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -8792,7 +7028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8802,7 +7038,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8811,7 +7047,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:52 GMT + - Fri, 18 Oct 2024 11:00:03 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8821,11 +7057,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35a3faf0-ec1b-4165-9327-48fdae8057ac + - 0e049aff-ba87-48ba-a015-3549f217066e status: 200 OK code: 200 - duration: 100.732623ms - - id: 180 + duration: 289.377311ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -8841,7 +7077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8851,7 +7087,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8860,7 +7096,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:33:57 GMT + - Fri, 18 Oct 2024 11:00:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8870,11 +7106,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a948b1a-0648-43bc-8ab4-17b5aee29535 + - 0b03adb2-1f6c-4042-bda8-c7d1fd722a3a status: 200 OK code: 200 - duration: 73.508061ms - - id: 181 + duration: 69.718078ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -8890,7 +7126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8900,7 +7136,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8909,7 +7145,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:02 GMT + - Fri, 18 Oct 2024 11:00:14 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8919,11 +7155,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3675656c-7066-4c56-ab5b-218515445b05 + - a597ba25-17c0-405e-965e-f410b0aef815 status: 200 OK code: 200 - duration: 63.859785ms - - id: 182 + duration: 63.084677ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -8939,7 +7175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8949,7 +7185,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -8958,7 +7194,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:07 GMT + - Fri, 18 Oct 2024 11:00:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -8968,11 +7204,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2ec8727-de8d-4a35-85fb-428ee97f8387 + - 6e496e36-a991-45f7-83b9-6be6b1cff5ef status: 200 OK code: 200 - duration: 135.646828ms - - id: 183 + duration: 70.320474ms + - id: 147 request: proto: HTTP/1.1 proto_major: 1 @@ -8988,7 +7224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -8998,7 +7234,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9007,7 +7243,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:12 GMT + - Fri, 18 Oct 2024 11:00:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9017,11 +7253,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac4e43ce-b52b-4669-9cf9-271ed70b213f + - f80a2318-c30b-4104-8714-b2fed2f1e50f status: 200 OK code: 200 - duration: 61.664814ms - - id: 184 + duration: 64.357101ms + - id: 148 request: proto: HTTP/1.1 proto_major: 1 @@ -9037,7 +7273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9047,7 +7283,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9056,7 +7292,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:17 GMT + - Fri, 18 Oct 2024 11:00:29 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9066,11 +7302,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3dfca2b-5cb6-4301-af80-8e1020140dcf + - e68ba436-c143-4adc-b9b6-b4e27d4a3b71 status: 200 OK code: 200 - duration: 58.734906ms - - id: 185 + duration: 60.249705ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -9086,7 +7322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9096,7 +7332,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9105,7 +7341,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:23 GMT + - Fri, 18 Oct 2024 11:00:34 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9115,11 +7351,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b59f1066-9e41-4f9f-ad09-54781c38d75e + - be5044e6-11d1-482e-af14-e38ef5143ad0 status: 200 OK code: 200 - duration: 76.97508ms - - id: 186 + duration: 72.072888ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -9135,7 +7371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9145,7 +7381,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9154,7 +7390,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:28 GMT + - Fri, 18 Oct 2024 11:00:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9164,11 +7400,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40149b63-d3f1-494d-aacc-01dabf1a38d4 + - c9d93a3d-9f3d-4b18-b4df-32b2b350ddd4 status: 200 OK code: 200 - duration: 63.045626ms - - id: 187 + duration: 84.157087ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -9184,7 +7420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9194,7 +7430,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9203,7 +7439,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:33 GMT + - Fri, 18 Oct 2024 11:00:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9213,11 +7449,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62c9cdde-59fd-428e-a254-59613c7f09d8 + - cf00ec4d-2a5e-4c9b-b62f-c4caa4a2267e status: 200 OK code: 200 - duration: 81.416154ms - - id: 188 + duration: 80.180061ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -9233,7 +7469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9243,7 +7479,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9252,7 +7488,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:38 GMT + - Fri, 18 Oct 2024 11:00:49 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9262,11 +7498,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 580847b5-ed95-468e-94b6-aebdbab9cf8d + - 5cbfef32-f09d-46fe-9184-37e10905d790 status: 200 OK code: 200 - duration: 73.605267ms - - id: 189 + duration: 73.730557ms + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -9282,7 +7518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9292,7 +7528,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9301,7 +7537,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:43 GMT + - Fri, 18 Oct 2024 11:00:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9311,11 +7547,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98f5eb2d-c725-47f3-8e5e-2d621a99259c + - 59ec50d2-42e0-4217-ac96-62c25f3eafe1 status: 200 OK code: 200 - duration: 75.05254ms - - id: 190 + duration: 88.682986ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -9331,7 +7567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9341,7 +7577,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9350,7 +7586,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:48 GMT + - Fri, 18 Oct 2024 11:00:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9360,11 +7596,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6954176f-e932-43c0-970d-490e47b69ab1 + - 3182dd7b-7b76-42b7-8a8d-22bb5a13f1f3 status: 200 OK code: 200 - duration: 66.355874ms - - id: 191 + duration: 272.125644ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -9380,7 +7616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9390,7 +7626,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9399,7 +7635,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:53 GMT + - Fri, 18 Oct 2024 11:01:04 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9409,11 +7645,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9fcc216-ea49-430e-8092-23a2ad30de1c + - a959af51-c357-4b67-828b-f1b4b5cb5f6f status: 200 OK code: 200 - duration: 61.224712ms - - id: 192 + duration: 27.61892ms + - id: 156 request: proto: HTTP/1.1 proto_major: 1 @@ -9429,7 +7665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9439,7 +7675,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "542" @@ -9448,7 +7684,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:34:58 GMT + - Fri, 18 Oct 2024 11:01:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9458,11 +7694,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e6e1dde-c011-4fbc-9427-bf8672a46508 + - 5321e6f5-c982-475b-a22d-22cdf2fd0805 status: 200 OK code: 200 - duration: 69.673925ms - - id: 193 + duration: 28.967276ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -9478,7 +7714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9486,69 +7722,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:35:03 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c172048f-30da-453a-abb4-578ee456731b - status: 200 OK - code: 200 - duration: 97.603312ms - - id: 194 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 13 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"tags":null}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 + content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:03 GMT + - Fri, 18 Oct 2024 11:01:15 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9558,11 +7743,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35d590c3-23ce-44c0-abd4-61e851f795c6 + - 40f5ec09-28e4-41b8-a519-69c4d584afb0 status: 200 OK code: 200 - duration: 99.258052ms - - id: 195 + duration: 63.514852ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -9578,7 +7763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9586,18 +7771,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:03 GMT + - Fri, 18 Oct 2024 11:01:20 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9607,11 +7792,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b76d09d-9bcf-4827-804c-f55b15f3e2a6 + - d95dbe9b-0068-4d31-aad1-fc0f114be3d2 status: 200 OK code: 200 - duration: 60.362131ms - - id: 196 + duration: 67.322245ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -9627,7 +7812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9635,18 +7820,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:03 GMT + - Fri, 18 Oct 2024 11:01:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9656,11 +7841,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97030115-4c9b-4fc6-a33d-0e29795f84cd + - 5c61893e-5c33-4964-b4bf-9305c5358062 status: 200 OK code: 200 - duration: 38.5063ms - - id: 197 + duration: 72.604116ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -9676,7 +7861,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9684,18 +7869,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 542 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"initializing","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:04 GMT + - Fri, 18 Oct 2024 11:01:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9705,11 +7890,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 338f104c-8c63-4f8a-8c84-ef6468462914 + - 44914189-c47b-41e8-9619-ccfcb244a65e status: 200 OK code: 200 - duration: 41.988888ms - - id: 198 + duration: 36.609469ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -9725,7 +7910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9735,7 +7920,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -9744,7 +7929,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:04 GMT + - Fri, 18 Oct 2024 11:01:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9754,11 +7939,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2e21939-ccb2-4975-95d8-bae9821ae425 + - fabbb058-fff6-428f-9b99-284f12efb60b status: 200 OK code: 200 - duration: 30.795883ms - - id: 199 + duration: 30.050442ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -9774,7 +7959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9784,7 +7969,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -9793,56 +7978,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 666ad77f-4f24-42c1-90bb-cd8692554355 - status: 200 OK - code: 200 - duration: 81.052123ms - - id: 200 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 538 - uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "538" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 14 Oct 2024 14:35:05 GMT + - Fri, 18 Oct 2024 11:01:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9852,11 +7988,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01c0164b-2304-4977-8359-ffa8c6918fb2 + - baef7231-3032-4221-8824-dcc5fa3b68d9 status: 200 OK code: 200 - duration: 157.742226ms - - id: 201 + duration: 63.102451ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -9872,7 +8008,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9880,18 +8016,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "538" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:05 GMT + - Fri, 18 Oct 2024 11:01:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9901,11 +8037,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75022337-0d74-4bb4-9c2b-06774ab18151 + - 86121932-cc61-4614-9d33-9f2d313a13f0 status: 200 OK code: 200 - duration: 67.773695ms - - id: 202 + duration: 26.898049ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -9921,7 +8057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9929,18 +8065,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "538" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:10 GMT + - Fri, 18 Oct 2024 11:01:35 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9950,11 +8086,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edb4dbad-af20-4af9-b98b-e65948e16fc7 + - 6cfacf84-d5b8-4a33-8c57-59a924005dc6 status: 200 OK code: 200 - duration: 70.614557ms - - id: 203 + duration: 33.202496ms + - id: 165 request: proto: HTTP/1.1 proto_major: 1 @@ -9970,7 +8106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -9978,18 +8114,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "538" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:15 GMT + - Fri, 18 Oct 2024 11:01:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -9999,11 +8135,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ad97b7e-094e-4532-ae01-4389d7db7ada + - 822baab4-24f4-4acb-8420-315119122fcd status: 200 OK code: 200 - duration: 51.527631ms - - id: 204 + duration: 64.443988ms + - id: 166 request: proto: HTTP/1.1 proto_major: 1 @@ -10019,7 +8155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10027,18 +8163,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "538" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:20 GMT + - Fri, 18 Oct 2024 11:01:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10048,11 +8184,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7b94add-0b82-48f0-bbe2-819c848341ca + - 989d96cc-9aa7-4e1a-b8e5-7993f4bce03e status: 200 OK code: 200 - duration: 70.72435ms - - id: 205 + duration: 64.820773ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -10068,8 +8204,8 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 @@ -10078,7 +8214,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10087,7 +8223,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:25 GMT + - Fri, 18 Oct 2024 11:01:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10097,11 +8233,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12375cd8-25cd-48ef-9aa4-697cd395bfff + - 7b210521-de84-4229-ac93-da2f18ddd267 status: 200 OK code: 200 - duration: 69.350823ms - - id: 206 + duration: 129.427801ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -10117,7 +8253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10127,7 +8263,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10136,7 +8272,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:31 GMT + - Fri, 18 Oct 2024 11:01:36 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10146,11 +8282,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd702104-c5ec-4fa2-80c0-0574857ba75f + - 3cb0906b-913b-4766-8f01-9c53bede9c51 status: 200 OK code: 200 - duration: 99.381425ms - - id: 207 + duration: 28.798792ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -10166,7 +8302,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10176,7 +8312,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10185,7 +8321,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:36 GMT + - Fri, 18 Oct 2024 11:01:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10195,11 +8331,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95ebe6a9-87a1-4b93-af4b-bcaf9f0dc29c + - 5cde58db-ee04-4ccc-bdf8-9aa569c88936 status: 200 OK code: 200 - duration: 61.932438ms - - id: 208 + duration: 64.695987ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -10215,7 +8351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10225,7 +8361,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10234,7 +8370,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:41 GMT + - Fri, 18 Oct 2024 11:01:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10244,11 +8380,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59a974cc-15b7-4c07-a86f-b3d761c057fa + - da1e91e9-ffff-4df8-b1ae-48f24465adbc status: 200 OK code: 200 - duration: 85.433453ms - - id: 209 + duration: 137.988089ms + - id: 171 request: proto: HTTP/1.1 proto_major: 1 @@ -10264,7 +8400,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10274,7 +8410,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10283,7 +8419,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:46 GMT + - Fri, 18 Oct 2024 11:01:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10293,11 +8429,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a57e7b4e-67a4-4cf3-bf17-e04aa16500ff + - 7a15aef3-624f-4c72-b935-cb7b488efbab status: 200 OK code: 200 - duration: 59.595412ms - - id: 210 + duration: 57.43274ms + - id: 172 request: proto: HTTP/1.1 proto_major: 1 @@ -10313,7 +8449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10323,7 +8459,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10332,7 +8468,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:51 GMT + - Fri, 18 Oct 2024 11:01:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10342,11 +8478,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5502580-891f-493f-b52b-9937255a170b + - 1a233b46-494d-483c-995f-c71991c09eec status: 200 OK code: 200 - duration: 85.365638ms - - id: 211 + duration: 76.671919ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -10362,7 +8498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10372,7 +8508,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10381,7 +8517,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:35:56 GMT + - Fri, 18 Oct 2024 11:02:02 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10391,11 +8527,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66ad90d2-b048-4fa2-8ce7-238a177fc7a6 + - fb8b7934-265d-4861-9bc5-615b0773a5ac status: 200 OK code: 200 - duration: 62.364198ms - - id: 212 + duration: 66.794257ms + - id: 174 request: proto: HTTP/1.1 proto_major: 1 @@ -10411,7 +8547,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10421,7 +8557,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10430,7 +8566,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:36:01 GMT + - Fri, 18 Oct 2024 11:02:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10440,11 +8576,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70ddd40b-6008-476f-80bd-e9f98bbb75da + - f1467e1c-79dd-4dc1-b911-a262539a1940 status: 200 OK code: 200 - duration: 84.124441ms - - id: 213 + duration: 61.892837ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -10460,7 +8596,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10470,7 +8606,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2024-10-14T14:19:16.669679Z","endpoints":[{"dns_records":["212e27f8-a02d-477e-9b0d-13badca38105.mgdb.fr-par.scw.cloud"],"id":"ad78fabf-fcf5-4d05-abd5-e8f3d67e9d94","ips":[],"port":27017,"public":{}}],"id":"212e27f8-a02d-477e-9b0d-13badca38105","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-18T10:48:30.161743Z","endpoints":[{"dns_records":["ccb1b085-729e-4dcf-8da8-2ba0e5d135a7.mgdb.fr-par.scw.cloud"],"id":"8c396603-8050-4008-859a-e21f5cf276b3","ips":[],"port":27017,"public":{}}],"id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","name":"test-mongodb-volume-update1","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "538" @@ -10479,7 +8615,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:36:06 GMT + - Fri, 18 Oct 2024 11:02:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10489,11 +8625,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1431223c-a080-4119-9325-a43e5e2365ab + - 472554aa-107b-4e7e-91bc-332e1cf092dd status: 200 OK code: 200 - duration: 75.852133ms - - id: 214 + duration: 71.397713ms + - id: 176 request: proto: HTTP/1.1 proto_major: 1 @@ -10509,7 +8645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10519,7 +8655,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"212e27f8-a02d-477e-9b0d-13badca38105","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","type":"not_found"}' headers: Content-Length: - "129" @@ -10528,7 +8664,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:36:11 GMT + - Fri, 18 Oct 2024 11:02:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10538,11 +8674,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4657942e-0de2-4af6-adc5-9b8d0e3d83c7 + - eb3d9481-c021-40c4-8870-f74ae88af458 status: 404 Not Found code: 404 - duration: 32.088776ms - - id: 215 + duration: 32.525287ms + - id: 177 request: proto: HTTP/1.1 proto_major: 1 @@ -10558,7 +8694,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/212e27f8-a02d-477e-9b0d-13badca38105 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/ccb1b085-729e-4dcf-8da8-2ba0e5d135a7 method: GET response: proto: HTTP/2.0 @@ -10568,7 +8704,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"212e27f8-a02d-477e-9b0d-13badca38105","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"ccb1b085-729e-4dcf-8da8-2ba0e5d135a7","type":"not_found"}' headers: Content-Length: - "129" @@ -10577,7 +8713,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 14 Oct 2024 14:36:11 GMT + - Fri, 18 Oct 2024 11:02:17 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -10587,7 +8723,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6bd347d-daa3-4a35-b1b9-11bae39cc724 + - 864b94f2-c25f-452c-b4ca-f10ba582201a status: 404 Not Found code: 404 - duration: 40.540011ms + duration: 26.769774ms From 680795fe88fe7d2cd8b63fe9700400bf83ed9af5 Mon Sep 17 00:00:00 2001 From: jremy Date: Mon, 21 Oct 2024 15:33:38 +0200 Subject: [PATCH 20/26] fix(mongodb): add trademark in docs --- docs/data-sources/mongodb_instance.md | 32 +++++++++++++-------------- docs/resources/mongodb_instance.md | 18 +++++++-------- docs/resources/mongodb_snapshot.md | 28 +++++++++++------------ 3 files changed, 39 insertions(+), 39 deletions(-) diff --git a/docs/data-sources/mongodb_instance.md b/docs/data-sources/mongodb_instance.md index 15131d9a6f..28b9966c5a 100644 --- a/docs/data-sources/mongodb_instance.md +++ b/docs/data-sources/mongodb_instance.md @@ -1,13 +1,13 @@ --- -subcategory: "MongoDB" +subcategory: "MongoDB™" page_title: "Scaleway: scaleway_mongodb_instance" --- # scaleway_mongodb_instance -Gets information about a MongoDB Instance. +Gets information about a MongoDB™ Instance. -For further information refer to the Managed Databases for MongoDB [API documentation](https://developers.scaleway.com/en/products/mongodb/api/) +For further information refer to the Managed Databases for MongoDB™ [API documentation](https://developers.scaleway.com/en/products/mongodb/api/) ## Example Usage @@ -31,31 +31,31 @@ output "mongodb_version" { ## Argument Reference -- `name` - (Optional) The name of the MongoDB instance. +- `name` - (Optional) The name of the MongoDB™ instance. -- `instance_id` - (Optional) The MongoDB instance ID. +- `instance_id` - (Optional) The MongoDB™ instance ID. -> **Note** You must specify at least one: `name` or `instance_id`. -- `project_id` - (Optional) The ID of the project the MongoDB instance is in. Can be used to filter instances when using `name`. +- `project_id` - (Optional) The ID of the project the MongoDB™ instance is in. Can be used to filter instances when using `name`. -- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#zones) in which the MongoDB Instance exists. +- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#zones) in which the MongoDB™ Instance exists. -- `organization_id` - (Defaults to [provider](../index.md#organization_id) `organization_id`) The ID of the organization the MongoDB instance is in. +- `organization_id` - (Defaults to [provider](../index.md#organization_id) `organization_id`) The ID of the organization the MongoDB™ instance is in. ## Attributes Reference In addition to all above arguments, the following attributes are exported: -- `id` - The ID of the MongoDB Instance. -- `name` - The name of the MongoDB instance. -- `version` - The version of MongoDB running on the instance. -- `node_type` - The type of MongoDB node. -- `node_number` - The number of nodes in the MongoDB cluster. -- `created_at` - The date and time the MongoDB instance was created. +- `id` - The ID of the MongoDB™ Instance. +- `name` - The name of the MongoDB™ instance. +- `version` - The version of MongoDB™ running on the instance. +- `node_type` - The type of MongoDB™ node. +- `node_number` - The number of nodes in the MongoDB™ cluster. +- `created_at` - The date and time the MongoDB™ instance was created. - `project_id` - The ID of the project the instance belongs to. -- `tags` - A list of tags attached to the MongoDB instance. -- `volume_type` - The type of volume attached to the MongoDB instance. +- `tags` - A list of tags attached to the MongoDB™ instance. +- `volume_type` - The type of volume attached to the MongoDB™ instance. - `volume_size_in_gb` - The size of the attached volume, in GB. - `public_network` - The details of the public network configuration, if applicable. diff --git a/docs/resources/mongodb_instance.md b/docs/resources/mongodb_instance.md index 70cf018bf9..8262855dea 100644 --- a/docs/resources/mongodb_instance.md +++ b/docs/resources/mongodb_instance.md @@ -1,5 +1,5 @@ --- -subcategory: "MongoDB" +subcategory: "MongoDB™" page_title: "Scaleway: scaleway_mongodb_instance" --- @@ -42,24 +42,24 @@ resource "scaleway_mongodb_instance" "restored_instance" { The following arguments are supported: -- `version` - (Optional) MongoDB version of the instance. -- `node_type` - (Required) The type of MongoDB intance to create. +- `version` - (Optional) MongoDB™ version of the instance. +- `node_type` - (Required) The type of MongoDB™ intance to create. - `user_name` - (Optional) Name of the user created when the intance is created. - `password` - (Optional) Password of the user. -- `name` - (Optional) Name of the MongoDB instance. -- `tags` - (Optional) List of tags attached to the MongoDB instance. +- `name` - (Optional) Name of the MongoDB™ instance. +- `tags` - (Optional) List of tags attached to the MongoDB™ instance. - `volume_type` - (Optional) Volume type of the instance. - `volume_size_in_gb` - (Optional) Volume size in GB. -- `snapshot_id` - (Optional) Snapshot ID to restore the MongoDB instance from. +- `snapshot_id` - (Optional) Snapshot ID to restore the MongoDB™ instance from. - `public_network` - (Optional) Public network specs details. ## Attributes Reference In addition to all arguments above, the following attributes are exported: -- `id` - The ID of the MongoDB instance. -- `created_at` - The date and time of the creation of the MongoDB instance. -- `updated_at` - The date and time of the last update of the MongoDB instance. +- `id` - The ID of the MongoDB™ instance. +- `created_at` - The date and time of the creation of the MongoDB™ instance. +- `updated_at` - The date and time of the last update of the MongoDB™ instance. ## Import diff --git a/docs/resources/mongodb_snapshot.md b/docs/resources/mongodb_snapshot.md index 8933aff46d..5657bb6818 100644 --- a/docs/resources/mongodb_snapshot.md +++ b/docs/resources/mongodb_snapshot.md @@ -1,11 +1,11 @@ --- -subcategory: "MongoDB" +subcategory: "MongoDB™" page_title: "Scaleway: scaleway_mongodb_snapshot" --- # Resource: scaleway_mongodb_snapshot -Creates and manages Scaleway MongoDB snapshots. +Creates and manages Scaleway MongoDB™ snapshots. For more information refer to [the API documentation](https://www.scaleway.com/en/docs/managed-databases/mongodb/). ## Example Usage @@ -25,37 +25,37 @@ resource "scaleway_mongodb_snapshot" "main" { The following arguments are supported: -- `instance_id` - (Required) The ID of the MongoDB instance from which the snapshot was created. +- `instance_id` - (Required) The ID of the MongoDB™ instance from which the snapshot was created. -- `name` - (Optional) The name of the MongoDB snapshot. +- `name` - (Optional) The name of the MongoDB™ snapshot. -- `expires_at` - (Required) The expiration date of the MongoDB snapshot in ISO 8601 format (e.g. `2024-12-31T23:59:59Z`). +- `expires_at` - (Required) The expiration date of the MongoDB™ snapshot in ISO 8601 format (e.g. `2024-12-31T23:59:59Z`). ~> **Important:** Once set, `expires_at` cannot be removed. -- `region` - (Defaults to [provider](../index.md) `region`) The [region](../guides/regions_and_zones.md#regions) in which the MongoDB snapshot should be created. +- `region` - (Defaults to [provider](../index.md) `region`) The [region](../guides/regions_and_zones.md#regions) in which the MongoDB™ snapshot should be created. ## Attributes Reference In addition to all arguments above, the following attributes are exported: -- `id` - The unique identifier of the MongoDB snapshot. +- `id` - The unique identifier of the MongoDB™ snapshot. -- `instance_name` - The name of the MongoDB instance from which the snapshot was created. +- `instance_name` - The name of the MongoDB™ instance from which the snapshot was created. -- `size` - The size of the MongoDB snapshot in bytes. +- `size` - The size of the MongoDB™ snapshot in bytes. -- `node_type` - The type of node associated with the MongoDB snapshot. +- `node_type` - The type of node associated with the MongoDB™ snapshot. -- `volume_type` - The type of volume used for the MongoDB snapshot. +- `volume_type` - The type of volume used for the MongoDB™ snapshot. -- `created_at` - The date and time when the MongoDB snapshot was created. +- `created_at` - The date and time when the MongoDB™ snapshot was created. -- `updated_at` - The date and time of the last update of the MongoDB snapshot. +- `updated_at` - The date and time of the last update of the MongoDB™ snapshot. ## Import -MongoDB snapshots can be imported using the `{region}/{id}`, e.g. +MongoDB™ snapshots can be imported using the `{region}/{id}`, e.g. ```bash terraform import scaleway_mongodb_snapshot.main fr-par-1/11111111-1111-1111-1111-111111111111 From c6a3c0070fdb1a9fc8ec544fb1b03bc0a5e91298 Mon Sep 17 00:00:00 2001 From: jremy Date: Tue, 22 Oct 2024 09:50:00 +0200 Subject: [PATCH 21/26] feat(mongodb): add getsnapshot in test --- internal/services/mongodb/instance_test.go | 3 +- internal/services/mongodb/snapshot_test.go | 19 +- ...go-db-instance-from-snapshot.cassette.yaml | 5681 ++++++++++++----- .../mongo-db-snapshot-basic.cassette.yaml | 2621 ++------ .../mongo-db-snapshot-update.cassette.yaml | 5270 ++------------- 5 files changed, 5324 insertions(+), 8270 deletions(-) diff --git a/internal/services/mongodb/instance_test.go b/internal/services/mongodb/instance_test.go index 8ec7aa0eb7..7f964233de 100644 --- a/internal/services/mongodb/instance_test.go +++ b/internal/services/mongodb/instance_test.go @@ -235,11 +235,10 @@ func IsInstanceDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { if err != nil { return err } - instance, err := mongodbAPI.GetInstance(&mongodbSDK.GetInstanceRequest{ + _, err = mongodbAPI.GetInstance(&mongodbSDK.GetInstanceRequest{ InstanceID: ID, Region: extractRegion, }) - _ = instance if err == nil { return fmt.Errorf("instance (%s) still exists", rs.Primary.ID) diff --git a/internal/services/mongodb/snapshot_test.go b/internal/services/mongodb/snapshot_test.go index 51468fcb40..7c6b162df6 100644 --- a/internal/services/mongodb/snapshot_test.go +++ b/internal/services/mongodb/snapshot_test.go @@ -8,8 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" mongodbSDK "github.com/scaleway/scaleway-sdk-go/api/mongodb/v1alpha1" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/mongodb" ) @@ -114,20 +113,16 @@ func isSnapshotDestroyed(tt *acctest.TestTools) resource.TestCheckFunc { if err != nil { return err } - instanceID := zonal.ExpandID(regional.ExpandID(rs.Primary.Attributes["instance_id"]).String()) - listSnapshots, err := mongodbAPI.ListSnapshots(&mongodbSDK.ListSnapshotsRequest{ - InstanceID: &instanceID.ID, + _, err = mongodbAPI.GetSnapshot(&mongodbSDK.GetSnapshotRequest{ + SnapshotID: ID, Region: region, }) - if err != nil { - return err + if err == nil { + return fmt.Errorf("instance (%s) still exists", rs.Primary.ID) } - - for _, snapshot := range listSnapshots.Snapshots { - if snapshot.ID == ID { - return fmt.Errorf("snapshot (%s) still exists", rs.Primary.ID) - } + if !httperrors.Is404(err) { + return err } } return nil diff --git a/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml index d23a229e75..0856df92a3 100644 --- a/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-instance-from-snapshot.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:05 GMT + - Mon, 21 Oct 2024 14:30:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09498e34-1843-4737-bc4b-87472297ddb4 + - aecb6081-0d32-4a43-9e6b-c0e7ace91de3 status: 200 OK code: 200 - duration: 568.486047ms + duration: 705.202037ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:05 GMT + - Mon, 21 Oct 2024 14:30:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b32477ee-99a1-4e91-9370-22ca2ace17cc + - 2405157c-ae3b-415c-ab3c-626eb46479d4 status: 200 OK code: 200 - duration: 89.283092ms + duration: 219.57917ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:11 GMT + - Mon, 21 Oct 2024 14:30:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 566a33d4-e680-40be-881d-8837f259a00b + - 0d78a664-8a6f-4559-abf8-65d13c7cbe32 status: 200 OK code: 200 - duration: 153.769148ms + duration: 52.816386ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:16 GMT + - Mon, 21 Oct 2024 14:30:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c578db15-914e-4821-993c-f6e076f81d37 + - 8ae4114c-5755-4a4a-8f0d-20019117edaa status: 200 OK code: 200 - duration: 83.932197ms + duration: 64.387159ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:21 GMT + - Mon, 21 Oct 2024 14:30:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2732d9bc-05d0-4a77-96ea-8a135f595392 + - 4a0180bc-57f3-4570-ba02-d405adcbd5f0 status: 200 OK code: 200 - duration: 83.465387ms + duration: 84.409659ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -274,7 +274,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -283,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:26 GMT + - Mon, 21 Oct 2024 14:30:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af91c384-b884-4eaa-b4fb-8ed3e2e03073 + - c0605e4e-28db-4f90-b25a-d03a6feef1c8 status: 200 OK code: 200 - duration: 66.852378ms + duration: 74.261242ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:31 GMT + - Mon, 21 Oct 2024 14:30:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e3b7a75-2c71-4e74-b413-cb9ee1386bdd + - 344c33d2-4079-4ac5-b20d-32bf4184805b status: 200 OK code: 200 - duration: 80.821288ms + duration: 62.199435ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:36 GMT + - Mon, 21 Oct 2024 14:30:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f279f1b3-e752-4ed3-ac01-6636328868e7 + - 27ad2666-efea-4f12-bbfb-854cd69950df status: 200 OK code: 200 - duration: 75.828287ms + duration: 67.863199ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:41 GMT + - Mon, 21 Oct 2024 14:30:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6be0d355-96ba-4c25-9d35-fa0bf8968611 + - 25f001bd-626e-4977-b968-65e84722e8ec status: 200 OK code: 200 - duration: 98.10688ms + duration: 78.389973ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:46 GMT + - Mon, 21 Oct 2024 14:30:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab22e9f8-a4fd-47fe-b192-21ee4e19373f + - c7716b86-48a9-4fc1-8638-e6a443173813 status: 200 OK code: 200 - duration: 63.185911ms + duration: 33.212883ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:51 GMT + - Mon, 21 Oct 2024 14:30:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfbd5dc6-e3d9-4e51-930b-395953b37070 + - e17593cf-7717-4d4b-950d-006df7cbab9c status: 200 OK code: 200 - duration: 75.672197ms + duration: 71.74643ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -568,7 +568,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -577,9 +577,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:02:56 GMT + - Mon, 21 Oct 2024 14:30:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd5e3555-42ab-4078-a55c-06e96cbba3f4 + - 2b46ea12-7bf9-49ab-8c29-7c7f5565dca9 status: 200 OK code: 200 - duration: 70.463859ms + duration: 456.139427ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -617,7 +617,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -626,9 +626,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:01 GMT + - Mon, 21 Oct 2024 14:31:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83394d72-0b6c-49b2-8ef2-e0c242670bd2 + - 4e2a0479-a391-40c5-b55c-f7625519e70d status: 200 OK code: 200 - duration: 84.82873ms + duration: 67.684172ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -666,7 +666,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -675,9 +675,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:06 GMT + - Mon, 21 Oct 2024 14:31:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6d43b9a-051a-4422-b79b-57a474c7f236 + - 60bed829-9012-4509-91b5-045b09c2a933 status: 200 OK code: 200 - duration: 73.283222ms + duration: 66.922454ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -724,9 +724,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:12 GMT + - Mon, 21 Oct 2024 14:31:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b511996d-3983-4892-9fce-77b412a8e731 + - 45345aec-e191-47cf-ae53-b2c32707d093 status: 200 OK code: 200 - duration: 58.86081ms + duration: 76.758558ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -773,9 +773,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:17 GMT + - Mon, 21 Oct 2024 14:31:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20b0e262-d434-46bd-95ce-07df455b78db + - 8e6c0453-79a6-495c-92e3-b59ddb7dbb58 status: 200 OK code: 200 - duration: 57.895752ms + duration: 27.381459ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -813,7 +813,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -822,9 +822,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:22 GMT + - Mon, 21 Oct 2024 14:31:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3795f8a-0326-4ce6-9df8-9621692072d2 + - 87aa850f-7ee1-4391-87c7-5a213180adc6 status: 200 OK code: 200 - duration: 87.885746ms + duration: 68.792251ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -862,7 +862,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -871,9 +871,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:27 GMT + - Mon, 21 Oct 2024 14:31:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec0f3a04-119e-48db-9468-e49dfe0fecdc + - a97fe939-7ad6-444f-a706-9e0b3952e6bc status: 200 OK code: 200 - duration: 73.960133ms + duration: 33.387804ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -911,7 +911,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -920,9 +920,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:32 GMT + - Mon, 21 Oct 2024 14:31:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e12521d8-bfee-4933-b4e1-e9703f67f450 + - c101fe65-2d95-4aca-b252-96fddf3cf488 status: 200 OK code: 200 - duration: 73.90646ms + duration: 64.230945ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -960,7 +960,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -969,9 +969,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:37 GMT + - Mon, 21 Oct 2024 14:31:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04b0b86b-053d-4a40-9294-aaacd20f19b2 + - c10e186f-b927-4eff-be8f-db19196cbf88 status: 200 OK code: 200 - duration: 80.303822ms + duration: 85.90879ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1009,7 +1009,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1018,9 +1018,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:42 GMT + - Mon, 21 Oct 2024 14:31:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be6c222-363a-4ca0-8369-e68640b08499 + - 9a7601d2-8c6e-4754-8bcc-b095e8ee53ea status: 200 OK code: 200 - duration: 81.121503ms + duration: 31.62608ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1067,9 +1067,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:47 GMT + - Mon, 21 Oct 2024 14:31:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 625eebee-b2e8-423c-a61c-7f0161ad5c1a + - fd2de635-5bf1-4ec5-b6c5-1e9512a7539a status: 200 OK code: 200 - duration: 70.372743ms + duration: 68.897265ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1107,7 +1107,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1116,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:52 GMT + - Mon, 21 Oct 2024 14:31:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ce529e5-0a14-4599-946e-436255bab8c3 + - dfe72d6c-2165-43f4-881b-e08e76d49f00 status: 200 OK code: 200 - duration: 69.401055ms + duration: 74.26705ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1156,7 +1156,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1165,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:03:57 GMT + - Mon, 21 Oct 2024 14:32:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6614de84-5c24-4ede-a2a9-d53cd2bef374 + - 2c0cdcd4-07f2-4cad-8d7c-2c6a54f129cd status: 200 OK code: 200 - duration: 128.137074ms + duration: 71.155847ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1205,7 +1205,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1214,9 +1214,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:02 GMT + - Mon, 21 Oct 2024 14:32:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f77ba893-34e2-499f-8f35-6ef11758f2e4 + - 61745f40-a1ea-43c8-b841-9e75be38ef4f status: 200 OK code: 200 - duration: 66.540933ms + duration: 75.86584ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1254,7 +1254,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1263,9 +1263,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:07 GMT + - Mon, 21 Oct 2024 14:32:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ac74f75-b6b9-4cd4-a6f1-2f971a98e71f + - 3e7ded72-44ba-438e-b771-8e12bb857a29 status: 200 OK code: 200 - duration: 63.406443ms + duration: 67.329423ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1303,7 +1303,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1312,9 +1312,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:12 GMT + - Mon, 21 Oct 2024 14:32:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd9a54f5-03a4-4377-a852-aa90d590805d + - be53cea2-7ab3-405e-adb8-65cc588d3a5c status: 200 OK code: 200 - duration: 73.18226ms + duration: 195.637766ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1352,7 +1352,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1361,9 +1361,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:18 GMT + - Mon, 21 Oct 2024 14:32:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7de163f2-dff5-43a4-9188-6ce5ceb97526 + - aa40bcf2-1dda-489b-bb71-1acb6f0e007b status: 200 OK code: 200 - duration: 62.719917ms + duration: 57.74117ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1401,7 +1401,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1410,9 +1410,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:23 GMT + - Mon, 21 Oct 2024 14:32:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d100034-1af5-42a1-8a9b-aadf7d7a9afd + - c86abf3b-d147-4083-a61b-efcc0c5981bd status: 200 OK code: 200 - duration: 114.803625ms + duration: 68.579189ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1450,7 +1450,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1459,9 +1459,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:28 GMT + - Mon, 21 Oct 2024 14:32:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82b7485e-4df9-4201-bdbc-453788d57a19 + - 471fcf48-29ee-404e-8511-7db9e716bd44 status: 200 OK code: 200 - duration: 77.601766ms + duration: 88.921603ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1499,7 +1499,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1508,9 +1508,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:33 GMT + - Mon, 21 Oct 2024 14:32:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52b278c6-0931-4bb8-87e7-a763405dd283 + - 2ccb6aa3-1cfb-4105-9a1a-867eb7610dc3 status: 200 OK code: 200 - duration: 58.948854ms + duration: 68.678257ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1557,9 +1557,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:38 GMT + - Mon, 21 Oct 2024 14:32:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb119418-6a14-4213-92b9-c8adcb96a2c5 + - 194e44f5-4ae8-46b8-a38e-72781cf8f630 status: 200 OK code: 200 - duration: 83.132872ms + duration: 81.427942ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1597,7 +1597,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1606,9 +1606,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:43 GMT + - Mon, 21 Oct 2024 14:32:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9aeaee30-715e-4618-829c-9161193be028 + - 9eb45367-88bb-499c-abee-3224701d2b8f status: 200 OK code: 200 - duration: 150.790376ms + duration: 74.414689ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1646,7 +1646,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1655,9 +1655,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:48 GMT + - Mon, 21 Oct 2024 14:32:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7df2f803-8658-4405-85db-15f0042b4461 + - ed937576-d668-4f95-8f02-9b56722202a0 status: 200 OK code: 200 - duration: 222.949235ms + duration: 1.173857286s - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1695,7 +1695,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1704,9 +1704,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:53 GMT + - Mon, 21 Oct 2024 14:32:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebe8bb80-03a9-4569-98ed-9f86e4c6d235 + - bc1e04d5-06a6-4fa8-8672-207f64780063 status: 200 OK code: 200 - duration: 64.333216ms + duration: 79.597133ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1744,7 +1744,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1753,9 +1753,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:04:58 GMT + - Mon, 21 Oct 2024 14:33:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebcc3c22-d323-4be1-8054-75c91b02ca84 + - eb6a0234-a37e-42ac-a073-838546eccb6b status: 200 OK code: 200 - duration: 102.54995ms + duration: 209.39856ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1793,7 +1793,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1802,9 +1802,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:04 GMT + - Mon, 21 Oct 2024 14:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7af75962-8433-4158-a3b9-4ee8d1630739 + - 76dbd016-ce91-4d96-9960-db3201797d1d status: 200 OK code: 200 - duration: 80.874472ms + duration: 66.974052ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1842,7 +1842,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1851,9 +1851,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:09 GMT + - Mon, 21 Oct 2024 14:33:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7889be33-8a4a-49cb-a36e-cde090f3aa9b + - 127cf49e-7099-4e78-b2be-3e7307915fc2 status: 200 OK code: 200 - duration: 74.851023ms + duration: 66.089204ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1891,7 +1891,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1900,9 +1900,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:14 GMT + - Mon, 21 Oct 2024 14:33:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a93577f3-f983-4c11-adf2-ee62bc9ceded + - 123f2745-0844-4ba1-8958-f4b50692c58f status: 200 OK code: 200 - duration: 75.462433ms + duration: 72.982596ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1940,7 +1940,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1949,9 +1949,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:19 GMT + - Mon, 21 Oct 2024 14:33:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1959,10 +1959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86c2813b-637d-4edf-a2b0-b2ad67db2142 + - 6ae1ffdf-bb03-4195-b397-b67499805660 status: 200 OK code: 200 - duration: 58.628949ms + duration: 82.187989ms - id: 40 request: proto: HTTP/1.1 @@ -1979,7 +1979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -1989,7 +1989,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -1998,9 +1998,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:24 GMT + - Mon, 21 Oct 2024 14:33:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2008,10 +2008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45759b9c-7823-4ba9-a9a8-9976d6623624 + - 31acc163-78cb-4e64-b327-d486bb6bdda7 status: 200 OK code: 200 - duration: 68.268147ms + duration: 75.79404ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2038,7 +2038,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2047,9 +2047,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:29 GMT + - Mon, 21 Oct 2024 14:33:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,10 +2057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d640407d-0555-4186-a921-6bbe9f0b7b87 + - 53445cb2-7263-424a-88f9-14747fa93474 status: 200 OK code: 200 - duration: 67.852892ms + duration: 84.261149ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2087,7 +2087,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2096,9 +2096,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:34 GMT + - Mon, 21 Oct 2024 14:33:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2106,10 +2106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fdf0c75-0562-4945-9f84-a1b36888b56b + - c439aa8a-5aa5-42cd-a644-156556810d7b status: 200 OK code: 200 - duration: 66.765709ms + duration: 76.468483ms - id: 43 request: proto: HTTP/1.1 @@ -2126,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2136,7 +2136,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2145,9 +2145,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:39 GMT + - Mon, 21 Oct 2024 14:33:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2155,10 +2155,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0aee0cd0-5ab0-42af-898a-9e597dae2a37 + - f38ff3e5-0d32-4efa-a408-e037ad1b9710 status: 200 OK code: 200 - duration: 85.155438ms + duration: 74.845154ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2185,7 +2185,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2194,9 +2194,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:44 GMT + - Mon, 21 Oct 2024 14:33:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2204,10 +2204,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 300f779f-be45-4b99-84ca-5a725f05450f + - 815db2c8-2172-43d4-8837-494013335d6a status: 200 OK code: 200 - duration: 75.777566ms + duration: 62.904994ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2234,7 +2234,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2243,9 +2243,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:49 GMT + - Mon, 21 Oct 2024 14:33:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2253,10 +2253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 643930c4-783b-48bf-88fd-f51d1c31a5fb + - 25458fd2-7cad-40e0-bb8b-dd809aea1485 status: 200 OK code: 200 - duration: 137.011196ms + duration: 66.605707ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2283,7 +2283,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2292,9 +2292,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:54 GMT + - Mon, 21 Oct 2024 14:33:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2302,10 +2302,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7b095f2-f94b-4bec-b065-31f1fe310f80 + - 5ab38128-992b-4408-a0ea-f82406d8b776 status: 200 OK code: 200 - duration: 80.865032ms + duration: 37.398281ms - id: 47 request: proto: HTTP/1.1 @@ -2322,7 +2322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2332,7 +2332,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2341,9 +2341,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:05:59 GMT + - Mon, 21 Oct 2024 14:34:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2351,10 +2351,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e99ca2f1-0dab-4d25-85fd-20dd0d8e9d49 + - 4d13f775-43c4-441d-9e5e-f7683401116b status: 200 OK code: 200 - duration: 63.090323ms + duration: 65.067237ms - id: 48 request: proto: HTTP/1.1 @@ -2371,7 +2371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2381,7 +2381,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2390,9 +2390,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:04 GMT + - Mon, 21 Oct 2024 14:34:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2400,10 +2400,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 058e6561-88a9-434a-aff8-1a837148384c + - 7d96ef1c-4f4b-4e6b-a711-6a7a536b185b status: 200 OK code: 200 - duration: 59.732317ms + duration: 81.997293ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2430,7 +2430,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2439,9 +2439,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:10 GMT + - Mon, 21 Oct 2024 14:34:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2449,10 +2449,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e85a3d4e-266e-40aa-8f92-07f022ea8be2 + - a829880d-a7f0-4fbb-83e0-6d44ec0b053a status: 200 OK code: 200 - duration: 83.974511ms + duration: 66.280814ms - id: 50 request: proto: HTTP/1.1 @@ -2469,7 +2469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2479,7 +2479,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2488,9 +2488,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:15 GMT + - Mon, 21 Oct 2024 14:34:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2498,10 +2498,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b62d2ad6-dd45-44a2-b9a3-d013d3306bd6 + - efaecde6-8501-4f7e-9bd1-3a33cdd59e04 status: 200 OK code: 200 - duration: 87.600531ms + duration: 76.597176ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2528,7 +2528,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2537,9 +2537,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:20 GMT + - Mon, 21 Oct 2024 14:34:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2547,10 +2547,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 045efbe7-102c-41e5-be5d-0564ac0d19cc + - 45feddbe-5b56-45b5-bdda-78ccf84277f5 status: 200 OK code: 200 - duration: 77.091202ms + duration: 74.496986ms - id: 52 request: proto: HTTP/1.1 @@ -2567,7 +2567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2577,7 +2577,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2586,9 +2586,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:25 GMT + - Mon, 21 Oct 2024 14:34:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2596,10 +2596,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dd2776d-5fec-4b7b-be37-a8abf75936a4 + - dd9645ac-094e-486a-afcd-e45442b8bdf3 status: 200 OK code: 200 - duration: 78.848341ms + duration: 80.341509ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2626,7 +2626,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2635,9 +2635,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:30 GMT + - Mon, 21 Oct 2024 14:34:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2645,10 +2645,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ccfbf7a-da47-4313-bba9-eb3abe89a0d8 + - 72ccf66f-62b8-4f89-bb04-bd5cb70b0a6f status: 200 OK code: 200 - duration: 72.15483ms + duration: 72.199978ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2675,7 +2675,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2684,9 +2684,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:36 GMT + - Mon, 21 Oct 2024 14:34:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2694,10 +2694,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0597fdb5-1928-48d5-90dd-ddf9dac23627 + - dbfae93e-7e11-4013-9489-d4343bfe20ad status: 200 OK code: 200 - duration: 621.910782ms + duration: 69.983583ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2724,7 +2724,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2733,9 +2733,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:41 GMT + - Mon, 21 Oct 2024 14:34:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,10 +2743,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2308433e-f793-4821-98c4-734656941515 + - 9122ebb6-aab9-48d6-a058-a457f91c933c status: 200 OK code: 200 - duration: 77.772865ms + duration: 69.509611ms - id: 56 request: proto: HTTP/1.1 @@ -2763,7 +2763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2773,7 +2773,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2782,9 +2782,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:46 GMT + - Mon, 21 Oct 2024 14:34:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2792,10 +2792,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05e7f4a5-25ca-4413-a9c1-511234875c53 + - 7e616777-b9c4-4ab3-9819-45c5df6fd242 status: 200 OK code: 200 - duration: 72.020862ms + duration: 76.801841ms - id: 57 request: proto: HTTP/1.1 @@ -2812,7 +2812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2822,7 +2822,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2831,9 +2831,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:51 GMT + - Mon, 21 Oct 2024 14:34:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2841,10 +2841,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfbe3226-ae20-43e3-a3df-1813d3f41393 + - 4a5e37d9-29c7-4458-82b5-7a6b43ce33c2 status: 200 OK code: 200 - duration: 70.817123ms + duration: 82.650304ms - id: 58 request: proto: HTTP/1.1 @@ -2861,7 +2861,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2871,7 +2871,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2880,9 +2880,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:06:56 GMT + - Mon, 21 Oct 2024 14:34:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2890,10 +2890,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fbe8058-3f86-413f-940a-9771e0998ab4 + - 38073364-4bea-4427-919e-0272e288c000 status: 200 OK code: 200 - duration: 74.040504ms + duration: 78.846955ms - id: 59 request: proto: HTTP/1.1 @@ -2910,7 +2910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2920,7 +2920,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2929,9 +2929,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:01 GMT + - Mon, 21 Oct 2024 14:35:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2939,10 +2939,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60f5141a-6326-4b14-9c55-856a15808015 + - 24040343-37b5-4404-a58e-7e0a978ccfdf status: 200 OK code: 200 - duration: 69.977529ms + duration: 68.64048ms - id: 60 request: proto: HTTP/1.1 @@ -2959,7 +2959,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -2969,7 +2969,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -2978,9 +2978,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:06 GMT + - Mon, 21 Oct 2024 14:35:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2988,10 +2988,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48a23664-0db9-4f40-86f1-091cacbfeb25 + - d7f29ef8-e98d-4f91-922f-b37a38de5737 status: 200 OK code: 200 - duration: 76.669828ms + duration: 68.209253ms - id: 61 request: proto: HTTP/1.1 @@ -3008,7 +3008,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3018,7 +3018,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3027,9 +3027,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:11 GMT + - Mon, 21 Oct 2024 14:35:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3037,10 +3037,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cf0ec2c-74a6-4311-a6bb-b6a8ff204ba1 + - 457824e2-a518-497b-a1e9-2807637e64da status: 200 OK code: 200 - duration: 72.98405ms + duration: 76.445035ms - id: 62 request: proto: HTTP/1.1 @@ -3057,7 +3057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3067,7 +3067,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3076,9 +3076,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:16 GMT + - Mon, 21 Oct 2024 14:35:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3086,10 +3086,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f00ef32-c0d7-42a1-93c2-167a6f1508e5 + - 693f0ea2-74b3-436b-98b6-c3da6523b757 status: 200 OK code: 200 - duration: 78.084547ms + duration: 73.501517ms - id: 63 request: proto: HTTP/1.1 @@ -3106,7 +3106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3116,7 +3116,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3125,9 +3125,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:21 GMT + - Mon, 21 Oct 2024 14:35:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3135,10 +3135,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20adc33a-61b8-4ede-9feb-8e78881ee6a9 + - af096d96-db7a-4e1a-9d8a-b267b866e823 status: 200 OK code: 200 - duration: 95.518764ms + duration: 68.131613ms - id: 64 request: proto: HTTP/1.1 @@ -3155,7 +3155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3165,7 +3165,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3174,9 +3174,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:26 GMT + - Mon, 21 Oct 2024 14:35:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3184,10 +3184,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35303064-910f-4dd9-b04c-b81c3396e537 + - cb0e3584-bff7-4f41-aeeb-b5ea09094d30 status: 200 OK code: 200 - duration: 71.428233ms + duration: 85.98263ms - id: 65 request: proto: HTTP/1.1 @@ -3204,7 +3204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3214,7 +3214,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3223,9 +3223,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:31 GMT + - Mon, 21 Oct 2024 14:35:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3233,10 +3233,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a57aee6-3ecc-4c29-a1d1-a89197d74ecd + - bdc204fb-6134-4c66-a21d-85b019fc71a6 status: 200 OK code: 200 - duration: 76.268743ms + duration: 78.736973ms - id: 66 request: proto: HTTP/1.1 @@ -3253,7 +3253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3263,7 +3263,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3272,9 +3272,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:36 GMT + - Mon, 21 Oct 2024 14:35:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3282,10 +3282,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18e635de-a662-4a01-ac73-762d59d981d5 + - c5a1af18-ad9d-4d3a-9c60-42b6dfa34e7d status: 200 OK code: 200 - duration: 71.070712ms + duration: 65.23271ms - id: 67 request: proto: HTTP/1.1 @@ -3302,7 +3302,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3312,7 +3312,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3321,9 +3321,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:42 GMT + - Mon, 21 Oct 2024 14:35:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3331,10 +3331,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aadcec4b-d755-4f62-ae79-2bfdabc47494 + - e905e422-d29a-4cc3-b83e-847b5630ed7f status: 200 OK code: 200 - duration: 193.846759ms + duration: 86.104524ms - id: 68 request: proto: HTTP/1.1 @@ -3351,7 +3351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3361,7 +3361,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3370,9 +3370,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:47 GMT + - Mon, 21 Oct 2024 14:35:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3380,10 +3380,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d8cb8af-af6f-45a8-a860-b7573e26afe2 + - db0799d3-d6fc-41e6-884b-cff65d89130e status: 200 OK code: 200 - duration: 81.374418ms + duration: 47.385696ms - id: 69 request: proto: HTTP/1.1 @@ -3400,7 +3400,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3410,7 +3410,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3419,9 +3419,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:52 GMT + - Mon, 21 Oct 2024 14:35:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3429,10 +3429,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1535a7ec-c2a0-48b5-ae56-a95881db61ee + - d170d39e-3e03-4af3-99d4-a9639ccdc6c5 status: 200 OK code: 200 - duration: 152.308035ms + duration: 58.607099ms - id: 70 request: proto: HTTP/1.1 @@ -3449,7 +3449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3459,7 +3459,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3468,9 +3468,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:07:57 GMT + - Mon, 21 Oct 2024 14:36:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3478,10 +3478,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b1bd9e5-c600-4c32-9b04-7d88fb227047 + - f9ca80cb-fc35-4efd-b672-a2d77d8fd7d2 status: 200 OK code: 200 - duration: 63.038129ms + duration: 68.354405ms - id: 71 request: proto: HTTP/1.1 @@ -3498,7 +3498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3508,7 +3508,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3517,9 +3517,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:02 GMT + - Mon, 21 Oct 2024 14:36:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3527,10 +3527,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0f4e32e-072d-45fa-9500-6702b8ec3ea8 + - ad2f3cc0-ebf3-4dd8-8b49-f33d273eb98b status: 200 OK code: 200 - duration: 80.330204ms + duration: 74.754748ms - id: 72 request: proto: HTTP/1.1 @@ -3547,7 +3547,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3557,7 +3557,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3566,9 +3566,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:07 GMT + - Mon, 21 Oct 2024 14:36:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3576,10 +3576,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c61eda7f-3d01-413a-b908-5444f42ae8a0 + - 86687449-45d8-4f9f-bac7-afd64caff85a status: 200 OK code: 200 - duration: 98.405215ms + duration: 84.61772ms - id: 73 request: proto: HTTP/1.1 @@ -3596,7 +3596,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3606,7 +3606,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3615,9 +3615,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:12 GMT + - Mon, 21 Oct 2024 14:36:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3625,10 +3625,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c58f4cb6-36fe-4293-9c84-3786bf239d0b + - 283b5241-d000-419f-9a6b-4ea919143f82 status: 200 OK code: 200 - duration: 79.952362ms + duration: 58.064156ms - id: 74 request: proto: HTTP/1.1 @@ -3645,7 +3645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3655,7 +3655,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3664,9 +3664,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:17 GMT + - Mon, 21 Oct 2024 14:36:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3674,10 +3674,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d74a34c-798f-431d-8bfd-e0e731786c64 + - a649820b-7977-4702-819e-fb7c2c9ae040 status: 200 OK code: 200 - duration: 83.210204ms + duration: 70.727088ms - id: 75 request: proto: HTTP/1.1 @@ -3694,7 +3694,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3704,7 +3704,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3713,9 +3713,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:22 GMT + - Mon, 21 Oct 2024 14:36:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3723,10 +3723,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d69f4ff2-e3a1-4bd0-bc95-6ea0d39d1729 + - 6ff44224-d3d8-4cac-b0fc-745b06bb780c status: 200 OK code: 200 - duration: 82.383126ms + duration: 66.631887ms - id: 76 request: proto: HTTP/1.1 @@ -3743,7 +3743,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3753,7 +3753,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3762,9 +3762,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:27 GMT + - Mon, 21 Oct 2024 14:36:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3772,10 +3772,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4517dea6-4904-4f5d-924a-3dd1c85859cc + - 6ccdc522-07de-4fc9-88ea-233c9aeb6bd8 status: 200 OK code: 200 - duration: 72.016984ms + duration: 74.827901ms - id: 77 request: proto: HTTP/1.1 @@ -3792,7 +3792,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3802,7 +3802,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3811,9 +3811,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:33 GMT + - Mon, 21 Oct 2024 14:36:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3821,10 +3821,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be955d55-aa96-4b95-957b-4847b61ae791 + - 4f0f6f40-98f6-4a5f-90cf-878ec8db8308 status: 200 OK code: 200 - duration: 75.727423ms + duration: 58.718807ms - id: 78 request: proto: HTTP/1.1 @@ -3841,7 +3841,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3851,7 +3851,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3860,9 +3860,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:38 GMT + - Mon, 21 Oct 2024 14:36:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3870,10 +3870,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5e4f143-badd-4b02-9490-cf08545d164f + - 35403bfe-4e71-45eb-a7d3-957eb9bf82e8 status: 200 OK code: 200 - duration: 131.930627ms + duration: 398.616891ms - id: 79 request: proto: HTTP/1.1 @@ -3890,7 +3890,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3900,7 +3900,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3909,9 +3909,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:43 GMT + - Mon, 21 Oct 2024 14:36:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3919,10 +3919,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df79107d-df0b-4219-b308-ac1da16c200b + - bf8fb273-7bbe-4945-ba36-fec814c47fa9 status: 200 OK code: 200 - duration: 82.195854ms + duration: 34.741306ms - id: 80 request: proto: HTTP/1.1 @@ -3939,7 +3939,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3949,7 +3949,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -3958,9 +3958,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:48 GMT + - Mon, 21 Oct 2024 14:36:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3968,10 +3968,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8891909a-1b62-44c1-8dd6-424fcfd14aa5 + - a8ebc446-409d-476f-ad38-84656a6f2a08 status: 200 OK code: 200 - duration: 81.754498ms + duration: 76.915451ms - id: 81 request: proto: HTTP/1.1 @@ -3988,7 +3988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -3998,7 +3998,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4007,9 +4007,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:53 GMT + - Mon, 21 Oct 2024 14:36:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4017,10 +4017,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 502c7a84-f0be-473d-bf45-28af9a5616c2 + - 5bd48074-af62-45c3-9b23-74df58d4f0f0 status: 200 OK code: 200 - duration: 70.649758ms + duration: 59.651995ms - id: 82 request: proto: HTTP/1.1 @@ -4037,7 +4037,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4047,7 +4047,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4056,9 +4056,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:08:58 GMT + - Mon, 21 Oct 2024 14:37:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4066,10 +4066,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b559a287-040b-468d-a24a-ba7be7e6b14c + - 0d566c09-73d3-48fb-b550-8cb309c0a771 status: 200 OK code: 200 - duration: 78.741248ms + duration: 79.393036ms - id: 83 request: proto: HTTP/1.1 @@ -4086,7 +4086,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4096,7 +4096,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4105,9 +4105,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:03 GMT + - Mon, 21 Oct 2024 14:37:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4115,10 +4115,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff31da0c-0bcc-4bea-a649-3d1a98edd254 + - f0985463-1f89-4f73-b985-8b0ff8036c1f status: 200 OK code: 200 - duration: 67.265505ms + duration: 34.092762ms - id: 84 request: proto: HTTP/1.1 @@ -4135,7 +4135,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4145,7 +4145,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4154,9 +4154,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:08 GMT + - Mon, 21 Oct 2024 14:37:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4164,10 +4164,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1be2bd7-9b39-4537-996e-881a22c2d946 + - 6242f13b-e5be-48b5-9abb-7969996479b9 status: 200 OK code: 200 - duration: 79.165577ms + duration: 92.550044ms - id: 85 request: proto: HTTP/1.1 @@ -4184,7 +4184,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4194,7 +4194,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4203,9 +4203,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:13 GMT + - Mon, 21 Oct 2024 14:37:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4213,10 +4213,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd1cb6ba-7de8-47df-9dbb-b33844cd43ad + - 6b8b9534-d730-42b8-8342-0611886a774b status: 200 OK code: 200 - duration: 98.31074ms + duration: 63.256836ms - id: 86 request: proto: HTTP/1.1 @@ -4233,7 +4233,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4243,7 +4243,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4252,9 +4252,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:18 GMT + - Mon, 21 Oct 2024 14:37:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4262,10 +4262,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba075bdd-cf0c-4272-9b6d-abcc34342991 + - 600a2ed5-8f50-4e94-839d-947c0f8d5c4b status: 200 OK code: 200 - duration: 73.08643ms + duration: 62.062913ms - id: 87 request: proto: HTTP/1.1 @@ -4282,7 +4282,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4292,7 +4292,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4301,9 +4301,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:23 GMT + - Mon, 21 Oct 2024 14:37:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4311,10 +4311,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e94e3be5-3abd-4263-8c6c-a7fdf5791d8d + - da1c6a11-6714-47cf-aafb-7e1b12519448 status: 200 OK code: 200 - duration: 88.587314ms + duration: 71.104578ms - id: 88 request: proto: HTTP/1.1 @@ -4331,7 +4331,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4341,7 +4341,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4350,9 +4350,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:29 GMT + - Mon, 21 Oct 2024 14:37:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4360,10 +4360,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7df1e8ed-47f8-44a3-8381-4f5f4d0b249a + - eb86d3f3-ced5-4371-8601-85478fcd0db8 status: 200 OK code: 200 - duration: 85.644923ms + duration: 62.422534ms - id: 89 request: proto: HTTP/1.1 @@ -4380,7 +4380,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4390,7 +4390,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -4399,9 +4399,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:34 GMT + - Mon, 21 Oct 2024 14:37:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4409,10 +4409,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 918bf9d5-b1df-4bfd-bb4f-2d8958d987d5 + - cd6bd7d0-0622-4cc2-b5ae-86a3f71be2a4 status: 200 OK code: 200 - duration: 66.267655ms + duration: 66.597403ms - id: 90 request: proto: HTTP/1.1 @@ -4429,7 +4429,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4437,20 +4437,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:39 GMT + - Mon, 21 Oct 2024 14:37:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4458,10 +4458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7834c8ac-cbad-4bdb-bfa9-529b9c69a088 + - 3b86eca1-af15-4d99-8686-8fa6ce967ed1 status: 200 OK code: 200 - duration: 246.76414ms + duration: 29.806302ms - id: 91 request: proto: HTTP/1.1 @@ -4478,7 +4478,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -4486,20 +4486,2817 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:37:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc32abec-1102-499d-92c1-c98ca2e529b0 + status: 200 OK + code: 200 + duration: 93.179752ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:37:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52e24c47-1628-4515-aa32-23ddefd4e974 + status: 200 OK + code: 200 + duration: 67.271761ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:37:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb82038d-199d-4dff-b780-022df2cfd7bd + status: 200 OK + code: 200 + duration: 71.874458ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e1114ef-640f-4149-b4c6-a2bf640e33f9 + status: 200 OK + code: 200 + duration: 74.986449ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 97461981-7613-49f3-b631-ffeb0736de7e + status: 200 OK + code: 200 + duration: 36.03527ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ffcef39-6bc7-4fd2-bb62-894766b75ab6 + status: 200 OK + code: 200 + duration: 58.429834ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a591c0b7-c5fc-4ba6-9ba7-f64967477980 + status: 200 OK + code: 200 + duration: 71.302298ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 77e2d828-f744-48ee-bf45-942f9f29f60a + status: 200 OK + code: 200 + duration: 74.944753ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89a5bc49-d6c8-44da-9922-ca321745f0ec + status: 200 OK + code: 200 + duration: 62.076285ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d650eb09-c71b-4c26-baae-d602996e6ff1 + status: 200 OK + code: 200 + duration: 119.995605ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7f5c928-532b-4526-8349-a7c84eba99a9 + status: 200 OK + code: 200 + duration: 71.820492ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5916c02e-d8b3-40f2-b468-08aae5ad3416 + status: 200 OK + code: 200 + duration: 30.669456ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6af34a02-9a5a-4161-84d5-fdca19bc0f2a + status: 200 OK + code: 200 + duration: 66.985351ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1991590b-611c-43a8-9bc6-eb5a06ce4871 + status: 200 OK + code: 200 + duration: 69.691102ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:38:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2013fef5-fe16-490f-afe7-835eaba73e7d + status: 200 OK + code: 200 + duration: 27.750562ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b49cc56-27d2-4a49-87a1-3ca0ddad7f31 + status: 200 OK + code: 200 + duration: 25.092615ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0866e3ac-6b97-4be2-b763-37c8060c1c72 + status: 200 OK + code: 200 + duration: 65.063992ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc88fe8b-0c88-4ac6-9179-37d5fbb7c382 + status: 200 OK + code: 200 + duration: 85.169923ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b64de77-078a-4bd4-9d1f-c0780f03d08b + status: 200 OK + code: 200 + duration: 66.97404ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 472d711b-4672-4610-b0db-4571e7ff299c + status: 200 OK + code: 200 + duration: 79.110775ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc601c8f-de87-4ccd-880d-a1ad4d4c11c8 + status: 200 OK + code: 200 + duration: 82.434094ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab16856a-57cf-4f63-bd31-f3ee68db40d2 + status: 200 OK + code: 200 + duration: 84.642898ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5abcb991-9d03-4eae-ba3e-b54853c1eb5f + status: 200 OK + code: 200 + duration: 66.562307ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 816c8e05-934d-43fb-a1a6-bce5b357d1d9 + status: 200 OK + code: 200 + duration: 52.889365ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a585f4c2-7193-461a-b9ac-8121d0b08440 + status: 200 OK + code: 200 + duration: 71.114708ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e17783c4-3e33-4d73-b846-89943a8855df + status: 200 OK + code: 200 + duration: 80.470537ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:39:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79aaf0b5-9773-4d1b-a19f-ff9950e5bd7e + status: 200 OK + code: 200 + duration: 63.731582ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:40:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd4c60a1-f640-4e39-beda-a2e891074617 + status: 200 OK + code: 200 + duration: 73.887486ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:40:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e87a1993-8ad8-41fa-a8dd-ab3d6fe154d9 + status: 200 OK + code: 200 + duration: 93.064886ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:40:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dbbe5d92-2290-4f45-870c-50d19788b48c + status: 200 OK + code: 200 + duration: 55.916334ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:40:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51aa265b-8eb2-4eea-b20f-befdcda51403 + status: 200 OK + code: 200 + duration: 64.981771ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:40:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a803573-311f-4069-8670-285c993d2e05 + status: 200 OK + code: 200 + duration: 59.932848ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:40:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 545dfef9-9c3a-45c2-9ba0-ffcc124c7d75 + status: 200 OK + code: 200 + duration: 65.088738ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:40:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cbb39c15-c0d8-43d2-b911-144329bd0c2a + status: 200 OK + code: 200 + duration: 73.861726ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 540 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "540" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:40:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88c20cde-4aa5-485c-bd63-807a37f2e82a + status: 200 OK + code: 200 + duration: 73.119528ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4494774f-5572-4b23-be80-f4b7a4a72d0b + status: 200 OK + code: 200 + duration: 776.929525ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 533 + uncompressed: false + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f73b3bde-8567-4ff7-8fb0-2e1842de9f01 + status: 200 OK + code: 200 + duration: 30.392952ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 60 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 383 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:41.385140Z","expires_at":"2024-12-31T23:59:59Z","id":"3ff836c8-7b0c-4281-8daa-95a8239ee5b0","instance_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "383" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ffadfd3b-0691-4791-90f0-15169cd211b0 + status: 200 OK + code: 200 + duration: 295.468602ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3ff836c8-7b0c-4281-8daa-95a8239ee5b0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 383 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:41.385140Z","expires_at":"2024-12-31T23:59:59Z","id":"3ff836c8-7b0c-4281-8daa-95a8239ee5b0","instance_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "383" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e955a47-4430-4866-b739-03a661295ee3 + status: 200 OK + code: 200 + duration: 68.007456ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3ff836c8-7b0c-4281-8daa-95a8239ee5b0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 383 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:41.385140Z","expires_at":"2024-12-31T23:59:59Z","id":"3ff836c8-7b0c-4281-8daa-95a8239ee5b0","instance_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "383" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd898661-f181-4a49-bd9f-f1a34c7d12d8 + status: 200 OK + code: 200 + duration: 170.194429ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3ff836c8-7b0c-4281-8daa-95a8239ee5b0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 414 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:41.385140Z","expires_at":"2024-12-31T23:59:59Z","id":"3ff836c8-7b0c-4281-8daa-95a8239ee5b0","instance_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:41:42.368848Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "414" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7e72228-cb4c-4fae-82c9-8591caf44d67 + status: 200 OK + code: 200 + duration: 84.81097ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3ff836c8-7b0c-4281-8daa-95a8239ee5b0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 414 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:41.385140Z","expires_at":"2024-12-31T23:59:59Z","id":"3ff836c8-7b0c-4281-8daa-95a8239ee5b0","instance_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:41:42.368848Z","volume_type":{"type":"sbs_5k"}}' + headers: + Content-Length: + - "414" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 794d0e75-9833-44e5-915c-258211061bd5 + status: 200 OK + code: 200 + duration: 23.644735ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 130 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"instance_name":"restored-mongodb-from-snapshot","node_type":"MGDB-PLAY2-NANO","node_number":1,"volume":{"volume_type":"sbs_5k"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3ff836c8-7b0c-4281-8daa-95a8239ee5b0/restore + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4f1c160a-2497-4b25-88fa-254ba20ac1c4 + status: 200 OK + code: 200 + duration: 559.746531ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d59fd92-d646-4da4-ae8a-2626673f9e4e + status: 200 OK + code: 200 + duration: 1.147429647s + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:41:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ac24072-fa5e-4c14-8fe6-7f3c5f6cacb9 + status: 200 OK + code: 200 + duration: 67.938013ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a25fe43-a35d-4b59-ab59-08a0aab3efa8 + status: 200 OK + code: 200 + duration: 205.249878ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e226e0df-d9df-46c0-b558-b1aa8d3be579 + status: 200 OK + code: 200 + duration: 169.353138ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8af46245-ac70-45c4-9e51-fcb029549e2a + status: 200 OK + code: 200 + duration: 65.671407ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 87ced104-7ee2-4639-936d-53f032a795ab + status: 200 OK + code: 200 + duration: 71.322064ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c21c973d-9900-4c98-af3e-8599c19f618b + status: 200 OK + code: 200 + duration: 63.187335ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90a6415f-40ce-476c-896e-7f721854c673 + status: 200 OK + code: 200 + duration: 65.248734ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb56ae5f-9db4-40d3-867f-ebbb87a80166 + status: 200 OK + code: 200 + duration: 66.779128ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0d78d71-1b6b-4b95-b4aa-91eb189d18f7 + status: 200 OK + code: 200 + duration: 71.614182ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2984d12b-15e5-4b7b-b8e6-8fdc76b0eb2d + status: 200 OK + code: 200 + duration: 83.51089ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e49f4e6-7316-4173-904b-57477978d762 + status: 200 OK + code: 200 + duration: 55.623764ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f43efebb-7f3e-46fe-b233-52fc286721b7 + status: 200 OK + code: 200 + duration: 81.065087ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 + uncompressed: false + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "544" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 21 Oct 2024 14:42:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 13da5c24-2280-4488-9fb9-b40a5b4e196e + status: 200 OK + code: 200 + duration: 80.32882ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:39 GMT + - Mon, 21 Oct 2024 14:43:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4507,50 +7304,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91db1b3a-babf-48ad-8db6-f8207715ef55 + - ddbd2b01-cc08-4b56-ac39-a525954fdf16 status: 200 OK code: 200 - duration: 85.460065ms - - id: 92 + duration: 73.613238ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 60 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c/snapshots - method: POST + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 383 + content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "383" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:39 GMT + - Mon, 21 Oct 2024 14:43:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4558,11 +7353,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b294451b-014a-41ca-b6cf-0b20be2905c3 + - 1aed5945-97a2-434a-8e46-ffb55a3633bd status: 200 OK code: 200 - duration: 170.997885ms - - id: 93 + duration: 89.647212ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -4578,7 +7373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -4586,20 +7381,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 544 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "416" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:39 GMT + - Mon, 21 Oct 2024 14:43:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4607,11 +7402,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 932f242f-ead4-4035-bb5e-b786774c5c7f + - 928d8db7-b488-4e88-aa33-95bc188bbd42 status: 200 OK code: 200 - duration: 93.973483ms - - id: 94 + duration: 69.476461ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -4627,7 +7422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -4635,20 +7430,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 544 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "416" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:44 GMT + - Mon, 21 Oct 2024 14:43:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4656,11 +7451,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8278dafc-aea5-4a5c-aa3b-a447980afd7e + - 3e93ad31-ff10-4cd3-86cc-deca84cfcc76 status: 200 OK code: 200 - duration: 72.760315ms - - id: 95 + duration: 61.664213ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -4676,7 +7471,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -4684,20 +7479,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 544 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T09:09:40.345098Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "447" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:49 GMT + - Mon, 21 Oct 2024 14:43:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4705,11 +7500,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28b33bf0-5bba-4c73-85f9-84ed9538a166 + - fe88bc8f-7188-483f-99a3-5f8740724ba2 status: 200 OK code: 200 - duration: 90.255096ms - - id: 96 + duration: 55.960082ms + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -4725,7 +7520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -4733,20 +7528,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 544 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T09:09:40.345098Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "447" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:49 GMT + - Mon, 21 Oct 2024 14:43:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4754,30 +7549,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55b65686-de66-409d-8c97-baffa378cd3e + - 6f4c4f03-6a68-433a-9bec-a371b462dcfe status: 200 OK code: 200 - duration: 54.049915ms - - id: 97 + duration: 59.601764ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 130 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"instance_name":"restored-mongodb-from-snapshot","node_type":"MGDB-PLAY2-NANO","node_number":1,"volume":{"volume_type":"sbs_5k"}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/4f56d4af-eca5-453a-816e-5440cfcd3801/restore - method: POST + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -4786,7 +7579,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4795,9 +7588,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:50 GMT + - Mon, 21 Oct 2024 14:43:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4805,11 +7598,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a548126-45ea-41f3-9638-ed2884d23d7a + - bab454b6-87eb-4dac-8df8-3f9b8816f1b9 status: 200 OK code: 200 - duration: 601.482552ms - - id: 98 + duration: 76.245111ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -4825,7 +7618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -4835,7 +7628,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4844,9 +7637,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:50 GMT + - Mon, 21 Oct 2024 14:43:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4854,11 +7647,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1bd3e76-b2c5-4d17-b6a8-74e43b29c887 + - d8437353-fc4b-4494-9752-3f278b46b51a status: 200 OK code: 200 - duration: 60.062713ms - - id: 99 + duration: 61.129949ms + - id: 156 request: proto: HTTP/1.1 proto_major: 1 @@ -4874,7 +7667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -4884,7 +7677,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4893,9 +7686,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:09:55 GMT + - Mon, 21 Oct 2024 14:43:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4903,11 +7696,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e127d255-c8cc-4aa9-bcf1-38472d2bb35c + - 70801d41-ebca-435b-a06d-187e9577353b status: 200 OK code: 200 - duration: 87.251417ms - - id: 100 + duration: 69.819857ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -4923,7 +7716,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -4933,7 +7726,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4942,9 +7735,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:00 GMT + - Mon, 21 Oct 2024 14:43:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4952,11 +7745,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82533f51-cc45-4408-9e24-1cb578675496 + - a9dbeeae-802f-4141-a65b-2b9d39ee1966 status: 200 OK code: 200 - duration: 66.518566ms - - id: 101 + duration: 69.634015ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -4972,7 +7765,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -4982,7 +7775,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -4991,9 +7784,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:06 GMT + - Mon, 21 Oct 2024 14:43:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5001,11 +7794,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94103c02-75d8-41a6-b632-c487a6ea7ede + - 4245a74f-e644-4aec-ab8c-f07dbe8afa5c status: 200 OK code: 200 - duration: 684.247431ms - - id: 102 + duration: 68.462276ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -5021,7 +7814,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5031,7 +7824,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5040,9 +7833,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:11 GMT + - Mon, 21 Oct 2024 14:44:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5050,11 +7843,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af39be1b-83ad-4503-90b3-3d7d9a40f60c + - e0ebc7fd-d382-4f87-a7ae-a2115b284178 status: 200 OK code: 200 - duration: 70.365412ms - - id: 103 + duration: 89.094992ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -5070,7 +7863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5080,7 +7873,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5089,9 +7882,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:17 GMT + - Mon, 21 Oct 2024 14:44:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5099,11 +7892,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f374be2-addd-4807-b7b0-3af25bb2526a + - 4952ee8c-2236-48fb-9c75-db37ae0ee023 status: 200 OK code: 200 - duration: 722.095237ms - - id: 104 + duration: 68.474946ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -5119,7 +7912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5129,7 +7922,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5138,9 +7931,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:22 GMT + - Mon, 21 Oct 2024 14:44:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5148,11 +7941,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f6fdd92-3a12-4502-a64f-54a529df9da3 + - 5d10b63e-a2cd-4024-a52d-ad919b52ec46 status: 200 OK code: 200 - duration: 71.393827ms - - id: 105 + duration: 64.153552ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -5168,7 +7961,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5178,7 +7971,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5187,9 +7980,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:27 GMT + - Mon, 21 Oct 2024 14:44:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5197,11 +7990,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab07209f-46a1-481e-b5f6-5a60bbcbdc8f + - 9e1d7f86-1af2-47ff-b9d9-cf4c7ddff359 status: 200 OK code: 200 - duration: 76.442324ms - - id: 106 + duration: 66.189591ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -5217,7 +8010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5227,7 +8020,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5236,9 +8029,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:32 GMT + - Mon, 21 Oct 2024 14:44:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5246,11 +8039,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc2ee02a-c177-4ab1-b30e-85b7d1d4ba48 + - b70f952c-308e-4d94-b117-2265151e96a8 status: 200 OK code: 200 - duration: 72.283727ms - - id: 107 + duration: 88.751559ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -5266,7 +8059,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5276,7 +8069,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5285,9 +8078,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:37 GMT + - Mon, 21 Oct 2024 14:44:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5295,11 +8088,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64bbbd39-29cd-41f9-bfab-784697172157 + - 9b1af8e7-b83c-498a-8889-363f0d4fba36 status: 200 OK code: 200 - duration: 70.503124ms - - id: 108 + duration: 73.42441ms + - id: 165 request: proto: HTTP/1.1 proto_major: 1 @@ -5315,7 +8108,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5325,7 +8118,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5334,9 +8127,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:42 GMT + - Mon, 21 Oct 2024 14:44:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5344,11 +8137,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7de61c2c-247d-4c8b-8cdf-5db8a8382036 + - e528ce6c-da42-4781-9b88-dd4cc8d6291b status: 200 OK code: 200 - duration: 62.219451ms - - id: 109 + duration: 71.773372ms + - id: 166 request: proto: HTTP/1.1 proto_major: 1 @@ -5364,7 +8157,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5374,7 +8167,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5383,9 +8176,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:47 GMT + - Mon, 21 Oct 2024 14:44:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5393,11 +8186,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6569b48-a182-4e90-80f8-f58601114fd2 + - d4c59840-b840-4410-a367-751c14c3ec94 status: 200 OK code: 200 - duration: 78.561691ms - - id: 110 + duration: 76.578368ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -5413,7 +8206,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5423,7 +8216,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5432,9 +8225,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:52 GMT + - Mon, 21 Oct 2024 14:44:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5442,11 +8235,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f40677d-3011-4754-8304-dac7907aa35f + - af011445-9f3e-4abd-9cb3-7e3ec53709dc status: 200 OK code: 200 - duration: 147.211154ms - - id: 111 + duration: 61.695169ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -5462,7 +8255,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5472,7 +8265,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5481,9 +8274,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:10:57 GMT + - Mon, 21 Oct 2024 14:47:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5491,11 +8284,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee327125-7129-41a9-9fe0-681b6e1144b0 + - 905fffb4-de20-4976-88f6-5eb4b09510f2 status: 200 OK code: 200 - duration: 102.973115ms - - id: 112 + duration: 729.16842ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -5511,7 +8304,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5521,7 +8314,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5530,9 +8323,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:03 GMT + - Mon, 21 Oct 2024 14:47:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5540,11 +8333,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34a1fa43-5bfa-4e55-a9fd-8f275c9674b5 + - 8fc7e8b9-3541-4d47-8d64-af37a5967614 status: 200 OK code: 200 - duration: 68.014845ms - - id: 113 + duration: 59.805139ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -5560,7 +8353,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5570,7 +8363,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5579,9 +8372,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:08 GMT + - Mon, 21 Oct 2024 14:47:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5589,11 +8382,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c28dc582-0216-41fe-b653-4ca086599087 + - 1afc7cd8-e0c8-4756-bbb4-366d72cb6078 status: 200 OK code: 200 - duration: 59.353411ms - - id: 114 + duration: 321.330697ms + - id: 171 request: proto: HTTP/1.1 proto_major: 1 @@ -5609,7 +8402,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5619,7 +8412,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5628,9 +8421,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:13 GMT + - Mon, 21 Oct 2024 14:47:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5638,11 +8431,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d0762a0-10a8-4b6c-a08f-b7a48a94dd4b + - e069b74e-21a5-40de-bfc6-9cad40f3f9e8 status: 200 OK code: 200 - duration: 80.459872ms - - id: 115 + duration: 61.892906ms + - id: 172 request: proto: HTTP/1.1 proto_major: 1 @@ -5658,7 +8451,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5668,7 +8461,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5677,9 +8470,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:18 GMT + - Mon, 21 Oct 2024 14:47:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5687,11 +8480,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9ab1c56-d9eb-4e3e-8497-d884c14a5a51 + - 8709fc60-8c6a-490d-b318-6207646dcba0 status: 200 OK code: 200 - duration: 74.070259ms - - id: 116 + duration: 60.798952ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -5707,7 +8500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5717,7 +8510,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5726,9 +8519,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:23 GMT + - Mon, 21 Oct 2024 14:47:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5736,11 +8529,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e1bfdab-8fb6-414d-a92f-eddacd1854eb + - 2f7ec87f-a937-4607-96ca-3d9800d7b314 status: 200 OK code: 200 - duration: 73.59359ms - - id: 117 + duration: 59.755572ms + - id: 174 request: proto: HTTP/1.1 proto_major: 1 @@ -5756,7 +8549,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5766,7 +8559,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5775,9 +8568,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:28 GMT + - Mon, 21 Oct 2024 14:48:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5785,11 +8578,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8313e4aa-451f-4c8b-a92a-bd30f5cbed7e + - f6a15638-0bc0-4349-a76c-47959350da67 status: 200 OK code: 200 - duration: 469.869935ms - - id: 118 + duration: 59.780278ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -5805,7 +8598,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5815,7 +8608,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5824,9 +8617,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:33 GMT + - Mon, 21 Oct 2024 14:48:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5834,11 +8627,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2370a82-35b6-4fa6-aaaa-b2417e2445dc + - 4eb8ffde-8adc-4139-b5f1-51ed5151ac0f status: 200 OK code: 200 - duration: 90.902894ms - - id: 119 + duration: 358.470502ms + - id: 176 request: proto: HTTP/1.1 proto_major: 1 @@ -5854,7 +8647,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5864,7 +8657,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5873,9 +8666,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:38 GMT + - Mon, 21 Oct 2024 14:48:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5883,11 +8676,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83cab356-bed9-44ab-93c7-7f3c5333b8bb + - b07d26c1-3fbf-4c41-bb5c-0e9bff5c048c status: 200 OK code: 200 - duration: 61.960006ms - - id: 120 + duration: 83.970696ms + - id: 177 request: proto: HTTP/1.1 proto_major: 1 @@ -5903,7 +8696,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5913,7 +8706,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5922,9 +8715,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:44 GMT + - Mon, 21 Oct 2024 14:48:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5932,11 +8725,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c02b2e8-5ff1-4e4c-a3b7-47dace8d9989 + - e84ef0cc-54d6-46c9-b0b8-73d95c67afac status: 200 OK code: 200 - duration: 70.572401ms - - id: 121 + duration: 70.188426ms + - id: 178 request: proto: HTTP/1.1 proto_major: 1 @@ -5952,7 +8745,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -5962,7 +8755,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -5971,9 +8764,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:49 GMT + - Mon, 21 Oct 2024 14:48:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5981,11 +8774,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cb52298-f509-466c-8723-51106ab80668 + - 26c61960-e5b0-40ac-a804-1070be0504e2 status: 200 OK code: 200 - duration: 80.643054ms - - id: 122 + duration: 79.520805ms + - id: 179 request: proto: HTTP/1.1 proto_major: 1 @@ -6001,7 +8794,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6011,7 +8804,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6020,9 +8813,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:54 GMT + - Mon, 21 Oct 2024 14:48:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6030,11 +8823,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bfca5c2-10cb-4aa6-92d3-c264811048fa + - 0786722d-7900-4932-874c-aebb2bec4c8c status: 200 OK code: 200 - duration: 80.531069ms - - id: 123 + duration: 58.083848ms + - id: 180 request: proto: HTTP/1.1 proto_major: 1 @@ -6050,7 +8843,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6060,7 +8853,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6069,9 +8862,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:11:59 GMT + - Mon, 21 Oct 2024 14:48:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6079,11 +8872,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a14f9f5-4e89-4cfb-a68a-32d56221c6a2 + - 7a9663e3-37dc-4625-8375-b8b159baff17 status: 200 OK code: 200 - duration: 74.31602ms - - id: 124 + duration: 60.830713ms + - id: 181 request: proto: HTTP/1.1 proto_major: 1 @@ -6099,7 +8892,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6109,7 +8902,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6118,9 +8911,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:04 GMT + - Mon, 21 Oct 2024 14:48:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6128,11 +8921,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9c3dd35-ca91-449d-a4b3-7bb1d19dacb9 + - 298ee582-41e7-4237-a3e7-e088b968901d status: 200 OK code: 200 - duration: 67.640257ms - - id: 125 + duration: 68.371889ms + - id: 182 request: proto: HTTP/1.1 proto_major: 1 @@ -6148,7 +8941,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6158,7 +8951,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6167,9 +8960,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:09 GMT + - Mon, 21 Oct 2024 14:48:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6177,11 +8970,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f080b10-d89f-42ef-9abb-2392719fbdbb + - dd6cbf5b-d037-4bad-af65-8c6ad5d60733 status: 200 OK code: 200 - duration: 89.989622ms - - id: 126 + duration: 59.604186ms + - id: 183 request: proto: HTTP/1.1 proto_major: 1 @@ -6197,7 +8990,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6207,7 +9000,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6216,9 +9009,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:14 GMT + - Mon, 21 Oct 2024 14:48:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6226,11 +9019,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe165e24-c23b-4d63-874e-6161be8bbcc6 + - ea498c9b-1a7d-4206-8143-8e30947d9a7c status: 200 OK code: 200 - duration: 78.176329ms - - id: 127 + duration: 76.751677ms + - id: 184 request: proto: HTTP/1.1 proto_major: 1 @@ -6246,7 +9039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6256,7 +9049,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6265,9 +9058,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:19 GMT + - Mon, 21 Oct 2024 14:48:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6275,11 +9068,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44ac13b4-757d-47df-8677-8e322908deec + - 99f0d5f9-c2a3-43b8-b3eb-9d86f9101abd status: 200 OK code: 200 - duration: 73.327611ms - - id: 128 + duration: 60.8909ms + - id: 185 request: proto: HTTP/1.1 proto_major: 1 @@ -6295,7 +9088,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6305,7 +9098,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6314,9 +9107,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:24 GMT + - Mon, 21 Oct 2024 14:49:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6324,11 +9117,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9b68472-23e9-4c85-90b8-b231255c8436 + - 519bd7de-6ab6-436c-be6d-5d19d61f2374 status: 200 OK code: 200 - duration: 63.579423ms - - id: 129 + duration: 81.781858ms + - id: 186 request: proto: HTTP/1.1 proto_major: 1 @@ -6344,7 +9137,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6354,7 +9147,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6363,9 +9156,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:29 GMT + - Mon, 21 Oct 2024 14:49:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6373,11 +9166,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfd29066-6760-4083-9c44-b63c498dab51 + - 885e288d-53bf-4fd3-8f61-47f1c462bba1 status: 200 OK code: 200 - duration: 67.6005ms - - id: 130 + duration: 77.366979ms + - id: 187 request: proto: HTTP/1.1 proto_major: 1 @@ -6393,7 +9186,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6403,7 +9196,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6412,9 +9205,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:34 GMT + - Mon, 21 Oct 2024 14:49:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6422,11 +9215,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78d820d1-d175-4093-b55c-5c2ede33d9e6 + - 2dae03f1-63e5-438c-a9a5-ca6032d32360 status: 200 OK code: 200 - duration: 63.407737ms - - id: 131 + duration: 58.801331ms + - id: 188 request: proto: HTTP/1.1 proto_major: 1 @@ -6442,7 +9235,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6452,7 +9245,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6461,9 +9254,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:39 GMT + - Mon, 21 Oct 2024 14:49:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6471,11 +9264,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4875b722-2ce7-4a01-8fb6-6ed3cfac990d + - 4a849b69-fd1b-4ab0-a609-a469aa5473d8 status: 200 OK code: 200 - duration: 56.330239ms - - id: 132 + duration: 57.151092ms + - id: 189 request: proto: HTTP/1.1 proto_major: 1 @@ -6491,7 +9284,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6501,7 +9294,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6510,9 +9303,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:44 GMT + - Mon, 21 Oct 2024 14:49:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6520,11 +9313,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1340f9b-5fb2-46af-a9b1-ac9c513c0d7f + - 7ae2324c-360f-4250-afe7-446ed82cda90 status: 200 OK code: 200 - duration: 59.678889ms - - id: 133 + duration: 69.629521ms + - id: 190 request: proto: HTTP/1.1 proto_major: 1 @@ -6540,7 +9333,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6550,7 +9343,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6559,9 +9352,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:49 GMT + - Mon, 21 Oct 2024 14:49:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6569,11 +9362,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd14239f-cd36-4a32-a723-76b3be1c638f + - f6dadd8c-ccfb-4af9-bb89-2a94f0a6e6fb status: 200 OK code: 200 - duration: 73.972213ms - - id: 134 + duration: 68.855866ms + - id: 191 request: proto: HTTP/1.1 proto_major: 1 @@ -6589,7 +9382,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6599,7 +9392,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6608,9 +9401,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:12:55 GMT + - Mon, 21 Oct 2024 14:49:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6618,11 +9411,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64175c3a-3b6e-4287-b9d6-c2998ca879e7 + - 1ea72a2b-0b3e-4c88-bd84-65859506bfe6 status: 200 OK code: 200 - duration: 77.272323ms - - id: 135 + duration: 73.564181ms + - id: 192 request: proto: HTTP/1.1 proto_major: 1 @@ -6638,7 +9431,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6648,7 +9441,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6657,9 +9450,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:00 GMT + - Mon, 21 Oct 2024 14:49:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6667,11 +9460,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a751c192-33f2-4755-8caf-4a8106b99bf9 + - e2ca1ec9-44f2-48f1-8823-dfa0ce17e651 status: 200 OK code: 200 - duration: 72.451821ms - - id: 136 + duration: 61.909088ms + - id: 193 request: proto: HTTP/1.1 proto_major: 1 @@ -6687,7 +9480,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6697,7 +9490,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6706,9 +9499,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:05 GMT + - Mon, 21 Oct 2024 14:49:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6716,11 +9509,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db36df10-74e0-4905-a8db-b65145169a9a + - 1315c9c5-e4c9-4db5-b3c5-8752bf7c8690 status: 200 OK code: 200 - duration: 68.632184ms - - id: 137 + duration: 61.883874ms + - id: 194 request: proto: HTTP/1.1 proto_major: 1 @@ -6736,7 +9529,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6746,7 +9539,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6755,9 +9548,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:10 GMT + - Mon, 21 Oct 2024 14:49:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6765,11 +9558,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c13790a-518a-45cd-b28e-190516da7e1b + - cc1aa7db-6197-4d88-9006-dea6977678e9 status: 200 OK code: 200 - duration: 422.823822ms - - id: 138 + duration: 88.926892ms + - id: 195 request: proto: HTTP/1.1 proto_major: 1 @@ -6785,7 +9578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6795,7 +9588,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6804,9 +9597,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:15 GMT + - Mon, 21 Oct 2024 14:49:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6814,11 +9607,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1460678a-dd68-4f4c-ba5e-64846d45ce1f + - f176cdcd-4123-447d-816c-9c4d59d59881 status: 200 OK code: 200 - duration: 73.620861ms - - id: 139 + duration: 65.51596ms + - id: 196 request: proto: HTTP/1.1 proto_major: 1 @@ -6834,7 +9627,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6844,7 +9637,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6853,9 +9646,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:20 GMT + - Mon, 21 Oct 2024 14:49:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6863,11 +9656,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45eb7870-d8f4-4f67-85e1-6d5ab3e5c359 + - a9123ad5-e857-49a8-bed2-b5fd8a3a58e4 status: 200 OK code: 200 - duration: 61.846194ms - - id: 140 + duration: 59.959479ms + - id: 197 request: proto: HTTP/1.1 proto_major: 1 @@ -6883,7 +9676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6893,7 +9686,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6902,9 +9695,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:25 GMT + - Mon, 21 Oct 2024 14:50:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6912,11 +9705,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 770ccdef-afb9-4f08-af82-e1404240f34f + - ec149859-4406-4796-b39c-417879c9a452 status: 200 OK code: 200 - duration: 61.832784ms - - id: 141 + duration: 84.623241ms + - id: 198 request: proto: HTTP/1.1 proto_major: 1 @@ -6932,7 +9725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6942,7 +9735,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -6951,9 +9744,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:30 GMT + - Mon, 21 Oct 2024 14:50:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6961,11 +9754,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4857746-5dc6-4ae2-b73c-043d3611e664 + - d400a8e6-5db5-47fc-b83d-34006e33d397 status: 200 OK code: 200 - duration: 74.717423ms - - id: 142 + duration: 202.307551ms + - id: 199 request: proto: HTTP/1.1 proto_major: 1 @@ -6981,7 +9774,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -6991,7 +9784,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7000,9 +9793,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:35 GMT + - Mon, 21 Oct 2024 14:50:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7010,11 +9803,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 853043e3-2cec-4156-ab11-9cf988df1cff + - 46addfc2-735f-442a-868a-94a7c390dad3 status: 200 OK code: 200 - duration: 71.02599ms - - id: 143 + duration: 61.337767ms + - id: 200 request: proto: HTTP/1.1 proto_major: 1 @@ -7030,7 +9823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7040,7 +9833,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7049,9 +9842,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:41 GMT + - Mon, 21 Oct 2024 14:50:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7059,11 +9852,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11bc18ef-cfbd-47a1-ad41-5f9d3c03b8aa + - ebedf808-c473-48bd-8a80-b410d7c5f959 status: 200 OK code: 200 - duration: 75.357579ms - - id: 144 + duration: 69.564939ms + - id: 201 request: proto: HTTP/1.1 proto_major: 1 @@ -7079,7 +9872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7089,7 +9882,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7098,9 +9891,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:46 GMT + - Mon, 21 Oct 2024 14:50:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7108,11 +9901,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c619ac0-4450-4a8d-8fc0-b0f4c9b46a6f + - c54e9db0-82b6-4a8d-8937-de7b8dd288f1 status: 200 OK code: 200 - duration: 76.955685ms - - id: 145 + duration: 78.708713ms + - id: 202 request: proto: HTTP/1.1 proto_major: 1 @@ -7128,7 +9921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7138,7 +9931,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7147,9 +9940,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:51 GMT + - Mon, 21 Oct 2024 14:50:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7157,11 +9950,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aee89154-5cf7-4202-8e7c-9a2ff3b718c6 + - 280def67-1d69-4ba5-b90a-1c7524a10c1e status: 200 OK code: 200 - duration: 77.263509ms - - id: 146 + duration: 394.556014ms + - id: 203 request: proto: HTTP/1.1 proto_major: 1 @@ -7177,7 +9970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7187,7 +9980,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7196,9 +9989,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:13:56 GMT + - Mon, 21 Oct 2024 14:50:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7206,11 +9999,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b73606ce-b771-4130-bc71-7cd62f5a6b1d + - e5444c8d-354b-4d40-93c2-5844b6bbf49d status: 200 OK code: 200 - duration: 80.617446ms - - id: 147 + duration: 96.767822ms + - id: 204 request: proto: HTTP/1.1 proto_major: 1 @@ -7226,7 +10019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7236,7 +10029,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7245,9 +10038,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:01 GMT + - Mon, 21 Oct 2024 14:50:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7255,11 +10048,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b8cd62c-08d9-465b-bf3f-e7d6b7ecd912 + - da71721c-cfff-40a7-9cd4-2f548e1c0524 status: 200 OK code: 200 - duration: 65.058504ms - - id: 148 + duration: 74.402113ms + - id: 205 request: proto: HTTP/1.1 proto_major: 1 @@ -7275,7 +10068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7285,7 +10078,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7294,9 +10087,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:06 GMT + - Mon, 21 Oct 2024 14:52:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7304,11 +10097,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab406bf5-0090-42ab-b57c-1e2e4a61492c + - e35cd5d5-57db-474d-9bbb-35dc1bb10d31 status: 200 OK code: 200 - duration: 72.341956ms - - id: 149 + duration: 567.350535ms + - id: 206 request: proto: HTTP/1.1 proto_major: 1 @@ -7324,7 +10117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7334,7 +10127,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7343,9 +10136,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:11 GMT + - Mon, 21 Oct 2024 14:52:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7353,11 +10146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 841d436f-9ffe-4ded-a520-71c90bc999d5 + - 4bb70dbf-3848-48bc-a2b4-a02b29a16a36 status: 200 OK code: 200 - duration: 68.821049ms - - id: 150 + duration: 67.253215ms + - id: 207 request: proto: HTTP/1.1 proto_major: 1 @@ -7373,7 +10166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7383,7 +10176,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7392,9 +10185,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:16 GMT + - Mon, 21 Oct 2024 14:53:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7402,11 +10195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58e9f631-00c6-46f8-8007-87fec923fb6a + - 8b272e17-16ef-4e83-8110-8ff02b17d9be status: 200 OK code: 200 - duration: 96.232496ms - - id: 151 + duration: 109.625838ms + - id: 208 request: proto: HTTP/1.1 proto_major: 1 @@ -7422,7 +10215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7432,7 +10225,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7441,9 +10234,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:21 GMT + - Mon, 21 Oct 2024 14:53:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7451,11 +10244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40c3d1be-25ec-425a-97b0-f92ad260fb48 + - a261bb02-e38e-429c-aadd-f505f0397fd4 status: 200 OK code: 200 - duration: 70.099265ms - - id: 152 + duration: 61.692321ms + - id: 209 request: proto: HTTP/1.1 proto_major: 1 @@ -7471,7 +10264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7481,7 +10274,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7490,9 +10283,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:26 GMT + - Mon, 21 Oct 2024 14:53:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7500,11 +10293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a99ae24e-2c17-417c-8fd4-ba4b47582c21 + - cc636052-56ad-4d57-8e58-d2e73d075599 status: 200 OK code: 200 - duration: 79.157729ms - - id: 153 + duration: 78.244496ms + - id: 210 request: proto: HTTP/1.1 proto_major: 1 @@ -7520,7 +10313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7530,7 +10323,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7539,9 +10332,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:31 GMT + - Mon, 21 Oct 2024 14:53:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7549,11 +10342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41e7db66-4ae1-4b9e-9aeb-fe8ba1ef413a + - e5222da9-ea2a-40f3-837b-6582a6180c52 status: 200 OK code: 200 - duration: 80.10688ms - - id: 154 + duration: 65.384721ms + - id: 211 request: proto: HTTP/1.1 proto_major: 1 @@ -7569,7 +10362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7579,7 +10372,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7588,9 +10381,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:36 GMT + - Mon, 21 Oct 2024 14:53:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7598,11 +10391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ab51764-15a3-4555-9d9d-236f7417d436 + - f18ea424-8d79-4e8c-b8c1-4195fe74d725 status: 200 OK code: 200 - duration: 65.278256ms - - id: 155 + duration: 185.998767ms + - id: 212 request: proto: HTTP/1.1 proto_major: 1 @@ -7618,7 +10411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7628,7 +10421,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7637,9 +10430,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:41 GMT + - Mon, 21 Oct 2024 14:53:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7647,11 +10440,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 500c2f13-4386-45c9-94ef-54f84b8ed79c + - b1784783-521f-44d7-af0e-dc6d382cad0f status: 200 OK code: 200 - duration: 78.82777ms - - id: 156 + duration: 152.547371ms + - id: 213 request: proto: HTTP/1.1 proto_major: 1 @@ -7667,7 +10460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7677,7 +10470,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7686,9 +10479,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:47 GMT + - Mon, 21 Oct 2024 14:53:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7696,11 +10489,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efe8fb24-2685-4c17-aeeb-d9ecf74426c0 + - 83091cf6-cf30-4c1e-ab6b-632a41076a28 status: 200 OK code: 200 - duration: 63.369966ms - - id: 157 + duration: 65.427398ms + - id: 214 request: proto: HTTP/1.1 proto_major: 1 @@ -7716,7 +10509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7726,7 +10519,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7735,9 +10528,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:52 GMT + - Mon, 21 Oct 2024 14:53:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7745,11 +10538,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 391fd309-87cb-488b-a136-1a0dbaf3251a + - 8e2be92a-c1be-48da-b83c-9064c62e62a3 status: 200 OK code: 200 - duration: 69.654409ms - - id: 158 + duration: 65.185238ms + - id: 215 request: proto: HTTP/1.1 proto_major: 1 @@ -7765,7 +10558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7775,7 +10568,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7784,9 +10577,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:14:57 GMT + - Mon, 21 Oct 2024 14:53:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7794,11 +10587,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ccd0ce3-d855-4c24-9e3f-1db43abdb8e8 + - 6051395d-e51c-4edd-b209-35af74d89ae1 status: 200 OK code: 200 - duration: 58.071755ms - - id: 159 + duration: 53.860776ms + - id: 216 request: proto: HTTP/1.1 proto_major: 1 @@ -7814,7 +10607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7824,7 +10617,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7833,9 +10626,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:02 GMT + - Mon, 21 Oct 2024 14:53:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7843,11 +10636,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 610c4ca8-3765-47ba-b779-4e9d833e7b8a + - fd479b5b-c183-41a4-b4f5-b46051908d76 status: 200 OK code: 200 - duration: 63.341267ms - - id: 160 + duration: 65.51325ms + - id: 217 request: proto: HTTP/1.1 proto_major: 1 @@ -7863,7 +10656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7873,7 +10666,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7882,9 +10675,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:07 GMT + - Mon, 21 Oct 2024 14:53:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7892,11 +10685,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0baafca-fe88-476c-9986-f0253517bb12 + - 725bfc5c-770b-42f5-b930-3d7303be20db status: 200 OK code: 200 - duration: 81.399884ms - - id: 161 + duration: 64.579215ms + - id: 218 request: proto: HTTP/1.1 proto_major: 1 @@ -7912,7 +10705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7922,7 +10715,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7931,9 +10724,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:12 GMT + - Mon, 21 Oct 2024 14:54:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7941,11 +10734,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e9953fa-d6ca-4ce0-89bd-bf7e539315ba + - 9b7109ab-9273-42a5-a73a-a3eee6974916 status: 200 OK code: 200 - duration: 71.447647ms - - id: 162 + duration: 71.358924ms + - id: 219 request: proto: HTTP/1.1 proto_major: 1 @@ -7961,7 +10754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -7971,7 +10764,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -7980,9 +10773,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:17 GMT + - Mon, 21 Oct 2024 14:54:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7990,11 +10783,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2a0eca6-ae39-45a1-b1a4-1d917ad96435 + - 05949d4d-a1cb-4336-9821-a657c733e365 status: 200 OK code: 200 - duration: 91.059717ms - - id: 163 + duration: 72.029572ms + - id: 220 request: proto: HTTP/1.1 proto_major: 1 @@ -8010,7 +10803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8020,7 +10813,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8029,9 +10822,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:22 GMT + - Mon, 21 Oct 2024 14:54:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8039,11 +10832,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c85f2f3-cabd-43c5-b0fe-afee7b864763 + - 8b029a46-a49d-43d1-88ae-bd60ade925d4 status: 200 OK code: 200 - duration: 57.503594ms - - id: 164 + duration: 72.829478ms + - id: 221 request: proto: HTTP/1.1 proto_major: 1 @@ -8059,7 +10852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8069,7 +10862,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8078,9 +10871,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:27 GMT + - Mon, 21 Oct 2024 14:54:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8088,11 +10881,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0a4fce1-88ee-4ac2-8708-5985a2846b61 + - 0da546c7-d0dd-4c46-acf6-ed78252905da status: 200 OK code: 200 - duration: 75.040421ms - - id: 165 + duration: 59.658571ms + - id: 222 request: proto: HTTP/1.1 proto_major: 1 @@ -8108,7 +10901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8118,7 +10911,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8127,9 +10920,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:32 GMT + - Mon, 21 Oct 2024 14:54:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8137,11 +10930,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c9cb9d1-08e3-4dad-befb-e9ba14093793 + - 059266f4-920f-4645-adcd-d3847e74a1f7 status: 200 OK code: 200 - duration: 83.977379ms - - id: 166 + duration: 62.217427ms + - id: 223 request: proto: HTTP/1.1 proto_major: 1 @@ -8157,7 +10950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8167,7 +10960,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8176,9 +10969,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:37 GMT + - Mon, 21 Oct 2024 14:54:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8186,11 +10979,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 128628fa-e4de-4b68-8e14-8376247b43e9 + - 260b0ad3-aa3a-401e-8728-42e16064d962 status: 200 OK code: 200 - duration: 94.98235ms - - id: 167 + duration: 80.014426ms + - id: 224 request: proto: HTTP/1.1 proto_major: 1 @@ -8206,7 +10999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8216,7 +11009,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8225,9 +11018,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:42 GMT + - Mon, 21 Oct 2024 14:54:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8235,11 +11028,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87bee51b-101c-4a28-b882-0d638c940650 + - eaa420eb-ed09-4219-97d1-35da27a5ea78 status: 200 OK code: 200 - duration: 57.093165ms - - id: 168 + duration: 69.643145ms + - id: 225 request: proto: HTTP/1.1 proto_major: 1 @@ -8255,7 +11048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8265,7 +11058,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8274,9 +11067,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:47 GMT + - Mon, 21 Oct 2024 14:54:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8284,11 +11077,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bdb49a4-9519-41b5-bf12-24b2a5954f42 + - d4f52cfb-422f-4ebc-9800-dcc1b134f9b7 status: 200 OK code: 200 - duration: 60.762775ms - - id: 169 + duration: 73.16846ms + - id: 226 request: proto: HTTP/1.1 proto_major: 1 @@ -8304,7 +11097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8314,7 +11107,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8323,9 +11116,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:53 GMT + - Mon, 21 Oct 2024 14:54:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8333,11 +11126,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6d00e48-d050-43dd-a273-e8ff25396be6 + - 8c2237fe-fa9c-4e8c-ae72-8ea31f163444 status: 200 OK code: 200 - duration: 188.561424ms - - id: 170 + duration: 65.115843ms + - id: 227 request: proto: HTTP/1.1 proto_major: 1 @@ -8353,7 +11146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8363,7 +11156,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8372,9 +11165,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:15:58 GMT + - Mon, 21 Oct 2024 14:54:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8382,11 +11175,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 637e5241-9fc7-4f5b-a2c3-d89ed6ed50f3 + - 01c50f5b-c526-4f4d-b1b7-825eeb01e746 status: 200 OK code: 200 - duration: 52.398737ms - - id: 171 + duration: 73.08922ms + - id: 228 request: proto: HTTP/1.1 proto_major: 1 @@ -8402,7 +11195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8412,7 +11205,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8421,9 +11214,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:03 GMT + - Mon, 21 Oct 2024 14:54:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8431,11 +11224,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3101cfe2-2042-44dd-bd47-15d5a0fe6f60 + - 241cff18-4a2d-4e34-8853-55b29e377e5b status: 200 OK code: 200 - duration: 71.014148ms - - id: 172 + duration: 63.493396ms + - id: 229 request: proto: HTTP/1.1 proto_major: 1 @@ -8451,7 +11244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8461,7 +11254,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8470,9 +11263,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:08 GMT + - Mon, 21 Oct 2024 14:55:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8480,11 +11273,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10b4c199-24f9-4c54-a528-fe2f414cb62f + - 23991ef8-47e9-44ba-a860-092043feeff8 status: 200 OK code: 200 - duration: 90.098486ms - - id: 173 + duration: 67.22226ms + - id: 230 request: proto: HTTP/1.1 proto_major: 1 @@ -8500,7 +11293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8510,7 +11303,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8519,9 +11312,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:13 GMT + - Mon, 21 Oct 2024 14:55:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8529,11 +11322,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12580e2b-3321-40b3-98fe-473541fcb8f0 + - 28bb6ad7-cc16-44af-8029-2938add5fe27 status: 200 OK code: 200 - duration: 69.709864ms - - id: 174 + duration: 69.632068ms + - id: 231 request: proto: HTTP/1.1 proto_major: 1 @@ -8549,7 +11342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8559,7 +11352,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8568,9 +11361,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:18 GMT + - Mon, 21 Oct 2024 14:55:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8578,11 +11371,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab106297-37b3-4dea-92d7-ed5fc2333d8a + - 6b2c35a8-65d8-4d60-83ef-cc0de9b03000 status: 200 OK code: 200 - duration: 65.370937ms - - id: 175 + duration: 90.038072ms + - id: 232 request: proto: HTTP/1.1 proto_major: 1 @@ -8598,7 +11391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8608,7 +11401,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8617,9 +11410,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:23 GMT + - Mon, 21 Oct 2024 14:55:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8627,11 +11420,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bb4d263-f9a4-4683-b7f0-e168c2f46a07 + - 16ccc1a7-8191-4bd0-a043-9b11a6d67c9b status: 200 OK code: 200 - duration: 81.244423ms - - id: 176 + duration: 78.021703ms + - id: 233 request: proto: HTTP/1.1 proto_major: 1 @@ -8647,7 +11440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8657,7 +11450,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8666,9 +11459,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:28 GMT + - Mon, 21 Oct 2024 14:55:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8676,11 +11469,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ade1b245-ec7e-47dd-b80e-89e325586fac + - d96ef494-7dfe-4546-a2f9-4d6705eb6dd3 status: 200 OK code: 200 - duration: 427.464929ms - - id: 177 + duration: 63.006273ms + - id: 234 request: proto: HTTP/1.1 proto_major: 1 @@ -8696,7 +11489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8706,7 +11499,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8715,9 +11508,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:34 GMT + - Mon, 21 Oct 2024 14:55:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8725,11 +11518,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8547517c-2fdc-4967-ba85-66d13c7e43ae + - 1c5c7283-d5af-4226-8944-d4fc7093155b status: 200 OK code: 200 - duration: 76.64104ms - - id: 178 + duration: 76.982555ms + - id: 235 request: proto: HTTP/1.1 proto_major: 1 @@ -8745,7 +11538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8755,7 +11548,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8764,9 +11557,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:39 GMT + - Mon, 21 Oct 2024 14:55:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8774,11 +11567,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c982cdb-9223-4b20-8054-daccdc16374c + - 578a7c2a-b5a6-4ec2-8779-d8ec037603fd status: 200 OK code: 200 - duration: 89.898915ms - - id: 179 + duration: 68.801495ms + - id: 236 request: proto: HTTP/1.1 proto_major: 1 @@ -8794,7 +11587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8804,7 +11597,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8813,9 +11606,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:44 GMT + - Mon, 21 Oct 2024 14:55:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8823,11 +11616,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4d78e6e-2f38-421c-a694-8c29fad84aed + - 8d552bf9-68fe-47a9-8ad6-53d493c00d28 status: 200 OK code: 200 - duration: 74.048365ms - - id: 180 + duration: 65.789665ms + - id: 237 request: proto: HTTP/1.1 proto_major: 1 @@ -8843,7 +11636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8853,7 +11646,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8862,9 +11655,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:49 GMT + - Mon, 21 Oct 2024 14:55:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8872,11 +11665,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de01382c-a5e1-4594-a614-d48f43d98474 + - 0ef57e0a-72c4-4939-965b-079a87792718 status: 200 OK code: 200 - duration: 59.289332ms - - id: 181 + duration: 66.253198ms + - id: 238 request: proto: HTTP/1.1 proto_major: 1 @@ -8892,7 +11685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8902,7 +11695,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8911,9 +11704,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:54 GMT + - Mon, 21 Oct 2024 14:55:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8921,11 +11714,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ed40e3f-97fb-4fcb-b1a6-3eaf8d7eb021 + - 06ae15dd-56dc-40e9-95c4-e18d771ed9a8 status: 200 OK code: 200 - duration: 90.904203ms - - id: 182 + duration: 72.510509ms + - id: 239 request: proto: HTTP/1.1 proto_major: 1 @@ -8941,7 +11734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -8951,7 +11744,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -8960,9 +11753,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:16:59 GMT + - Mon, 21 Oct 2024 14:57:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8970,11 +11763,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 220c52c6-69fe-4ad2-88dd-b4f40b4212c4 + - 79365d35-c1bf-4301-9d15-799d387e8668 status: 200 OK code: 200 - duration: 72.94321ms - - id: 183 + duration: 143.911418ms + - id: 240 request: proto: HTTP/1.1 proto_major: 1 @@ -8990,7 +11783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9000,7 +11793,7 @@ interactions: trailer: {} content_length: 544 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "544" @@ -9009,9 +11802,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:04 GMT + - Mon, 21 Oct 2024 14:57:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9019,11 +11812,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a15baa6-6f58-4141-956b-76e7c0614b2d + - f5621fd1-ca91-4e53-abb7-0a998ab22132 status: 200 OK code: 200 - duration: 74.324713ms - - id: 184 + duration: 75.056424ms + - id: 241 request: proto: HTTP/1.1 proto_major: 1 @@ -9039,7 +11832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9049,7 +11842,7 @@ interactions: trailer: {} content_length: 537 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "537" @@ -9058,9 +11851,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:09 GMT + - Mon, 21 Oct 2024 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9068,11 +11861,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4ab9201-b21b-41b1-84d1-917a06e0d492 + - 26ba6cdb-c97e-46b4-a40e-71699b02f1cc status: 200 OK code: 200 - duration: 68.275304ms - - id: 185 + duration: 134.79277ms + - id: 242 request: proto: HTTP/1.1 proto_major: 1 @@ -9088,7 +11881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9098,7 +11891,7 @@ interactions: trailer: {} content_length: 537 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "537" @@ -9107,9 +11900,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:09 GMT + - Mon, 21 Oct 2024 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9117,11 +11910,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88b7a8f9-8e5e-4f2e-acf2-f8cd48a97024 + - 945cccc5-0ece-4ce3-937d-1db76040d87f status: 200 OK code: 200 - duration: 66.603731ms - - id: 186 + duration: 51.477044ms + - id: 243 request: proto: HTTP/1.1 proto_major: 1 @@ -9137,7 +11930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9147,7 +11940,7 @@ interactions: trailer: {} content_length: 537 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "537" @@ -9156,9 +11949,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:09 GMT + - Mon, 21 Oct 2024 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9166,11 +11959,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8e6433e-5644-4436-9b5e-2ef6299946e1 + - 36a86bb9-5498-4841-a7ce-06b18580c6da status: 200 OK code: 200 - duration: 31.410578ms - - id: 187 + duration: 50.588764ms + - id: 244 request: proto: HTTP/1.1 proto_major: 1 @@ -9186,7 +11979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -9196,7 +11989,7 @@ interactions: trailer: {} content_length: 533 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "533" @@ -9205,9 +11998,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:10 GMT + - Mon, 21 Oct 2024 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9215,11 +12008,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9363e486-58b8-43e0-8971-2bc854d4093a + - bc23d16d-a8a6-4cdb-bba2-59dce2ef8c14 status: 200 OK code: 200 - duration: 31.76171ms - - id: 188 + duration: 40.463174ms + - id: 245 request: proto: HTTP/1.1 proto_major: 1 @@ -9235,7 +12028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=92beeb9d-ef18-41a8-87a1-50e987c8bd1c&order_by=created_at_asc&page=1 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3ff836c8-7b0c-4281-8daa-95a8239ee5b0 method: GET response: proto: HTTP/2.0 @@ -9243,20 +12036,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 414 uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T09:17:07.021812Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' + body: '{"created_at":"2024-10-21T14:41:41.385140Z","expires_at":"2024-12-31T23:59:59Z","id":"3ff836c8-7b0c-4281-8daa-95a8239ee5b0","instance_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:58:45.365467Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "447" + - "414" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:10 GMT + - Mon, 21 Oct 2024 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9264,11 +12057,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83579115-83a0-4727-9b88-27ee3da6e9cb + - 6db413be-4fdd-428c-acc5-ffbf91bbeff9 status: 200 OK code: 200 - duration: 103.383001ms - - id: 189 + duration: 81.306886ms + - id: 246 request: proto: HTTP/1.1 proto_major: 1 @@ -9284,7 +12077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9294,7 +12087,7 @@ interactions: trailer: {} content_length: 537 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "537" @@ -9303,9 +12096,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:10 GMT + - Mon, 21 Oct 2024 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9313,11 +12106,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cfe090a-5ffa-471a-96a0-755055efe404 + - 9e33020b-2f33-45c5-8510-412f10acd2ef status: 200 OK code: 200 - duration: 31.390886ms - - id: 190 + duration: 66.141803ms + - id: 247 request: proto: HTTP/1.1 proto_major: 1 @@ -9333,7 +12126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9343,7 +12136,7 @@ interactions: trailer: {} content_length: 537 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "537" @@ -9352,9 +12145,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:11 GMT + - Mon, 21 Oct 2024 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9362,11 +12155,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19db4d85-fdc1-460d-9a2b-e6a411474f40 + - 85c8c594-3e06-45c1-9dd5-5f9dd7d01890 status: 200 OK code: 200 - duration: 64.843605ms - - id: 191 + duration: 28.879517ms + - id: 248 request: proto: HTTP/1.1 proto_major: 1 @@ -9382,7 +12175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: DELETE response: proto: HTTP/2.0 @@ -9392,7 +12185,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9401,9 +12194,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:11 GMT + - Mon, 21 Oct 2024 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9411,11 +12204,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb03cecb-3c97-49c1-8eed-4dbb57a020a4 + - 89a18f81-e20b-4243-90d6-a7e4ba2a9afb status: 200 OK code: 200 - duration: 183.031209ms - - id: 192 + duration: 145.984137ms + - id: 249 request: proto: HTTP/1.1 proto_major: 1 @@ -9431,7 +12224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9441,7 +12234,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9450,9 +12243,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:11 GMT + - Mon, 21 Oct 2024 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9460,11 +12253,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 413fa73e-7001-41d0-86ff-e8bc0bf73104 + - f13700f1-5607-423a-ac18-ce49b1e8bb07 status: 200 OK code: 200 - duration: 31.423476ms - - id: 193 + duration: 61.504294ms + - id: 250 request: proto: HTTP/1.1 proto_major: 1 @@ -9480,7 +12273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9490,7 +12283,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9499,9 +12292,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:16 GMT + - Mon, 21 Oct 2024 15:02:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9509,11 +12302,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 077684e9-ca00-4a22-ae91-87bce3c7812a + - e1bf4807-7643-44a2-88d5-7f7620f6cbc9 status: 200 OK code: 200 - duration: 77.684267ms - - id: 194 + duration: 73.086211ms + - id: 251 request: proto: HTTP/1.1 proto_major: 1 @@ -9529,7 +12322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9539,7 +12332,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9548,9 +12341,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:21 GMT + - Mon, 21 Oct 2024 15:07:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9558,11 +12351,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31f16768-3f70-4d88-967b-53234470372e + - 0c17fd5d-c7fc-47f3-94eb-c31c8b1a8cd8 status: 200 OK code: 200 - duration: 191.353577ms - - id: 195 + duration: 3.386501602s + - id: 252 request: proto: HTTP/1.1 proto_major: 1 @@ -9578,7 +12371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9588,7 +12381,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9597,9 +12390,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:26 GMT + - Mon, 21 Oct 2024 15:07:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9607,11 +12400,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5c23a2c-315c-4c33-acef-1d4dc805881a + - 05d3978c-1625-42d6-b8ba-7e35f8494638 status: 200 OK code: 200 - duration: 65.220013ms - - id: 196 + duration: 88.371351ms + - id: 253 request: proto: HTTP/1.1 proto_major: 1 @@ -9627,7 +12420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9637,7 +12430,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9646,9 +12439,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:31 GMT + - Mon, 21 Oct 2024 15:12:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9656,11 +12449,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0976c01-56de-4ebd-8054-61a56b58cd02 + - 343e1969-799b-4601-9fe6-5dbfe60b33fd status: 200 OK code: 200 - duration: 101.715112ms - - id: 197 + duration: 161.330482ms + - id: 254 request: proto: HTTP/1.1 proto_major: 1 @@ -9676,7 +12469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9686,7 +12479,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9695,9 +12488,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:36 GMT + - Mon, 21 Oct 2024 15:12:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9705,11 +12498,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1ff5d61-93a0-4eb6-95dc-5533d4184352 + - 64b34fba-b2bf-452a-8223-2730c92eb074 status: 200 OK code: 200 - duration: 86.977139ms - - id: 198 + duration: 87.509263ms + - id: 255 request: proto: HTTP/1.1 proto_major: 1 @@ -9725,7 +12518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9735,7 +12528,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9744,9 +12537,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:41 GMT + - Mon, 21 Oct 2024 15:17:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9754,11 +12547,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 511ce533-dd0b-4050-a023-d9ce4deaaf06 + - d0fa259a-7bea-4e39-ab3c-7c6c2c2d564a status: 200 OK code: 200 - duration: 75.639031ms - - id: 199 + duration: 413.013692ms + - id: 256 request: proto: HTTP/1.1 proto_major: 1 @@ -9774,7 +12567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9784,7 +12577,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9793,9 +12586,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:47 GMT + - Mon, 21 Oct 2024 15:17:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9803,11 +12596,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 746ea2bd-ffdb-4b33-80fe-c89fa44abdfe + - b81829c6-54d4-48bb-9428-959894960e9d status: 200 OK code: 200 - duration: 78.046819ms - - id: 200 + duration: 85.186315ms + - id: 257 request: proto: HTTP/1.1 proto_major: 1 @@ -9823,7 +12616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9833,7 +12626,7 @@ interactions: trailer: {} content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:49.991978Z","endpoints":[{"dns_records":["fde8e567-6e25-4cb8-abf6-62244531ae8b.mgdb.fr-par.scw.cloud"],"id":"04f8da85-0bd7-4f35-9281-4def1ea1ae20","ips":[],"port":27017,"public":{}}],"id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "540" @@ -9842,9 +12635,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:52 GMT + - Mon, 21 Oct 2024 15:22:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9852,11 +12645,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c25f877c-d872-4b87-bb75-c4156ff79355 + - f834b048-dcd2-405b-9db6-c86ae596fafa status: 200 OK code: 200 - duration: 88.615758ms - - id: 201 + duration: 403.280362ms + - id: 258 request: proto: HTTP/1.1 proto_major: 1 @@ -9872,7 +12665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9880,20 +12673,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 540 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","type":"not_found"}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "129" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:57 GMT + - Mon, 21 Oct 2024 15:22:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9901,11 +12694,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d6d792c-4249-4fc5-a61f-28d07164a15b - status: 404 Not Found - code: 404 - duration: 117.578565ms - - id: 202 + - 9ff5c03b-2390-4a2d-8d46-e533d82c1617 + status: 200 OK + code: 200 + duration: 114.975133ms + - id: 259 request: proto: HTTP/1.1 proto_major: 1 @@ -9921,28 +12714,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/4f56d4af-eca5-453a-816e-5440cfcd3801 - method: DELETE + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 417 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:09:39.488904Z","expires_at":"2024-12-31T23:59:59Z","id":"4f56d4af-eca5-453a-816e-5440cfcd3801","instance_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-17T09:17:57.301727Z","volume_type":{"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "417" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:57 GMT + - Mon, 21 Oct 2024 15:27:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9950,11 +12743,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1db2d624-df27-40b6-9d45-97db0330ead8 + - 8bde7bf7-c7e1-427e-b24b-44c0c8e53e45 status: 200 OK code: 200 - duration: 158.953957ms - - id: 203 + duration: 354.09938ms + - id: 260 request: proto: HTTP/1.1 proto_major: 1 @@ -9970,7 +12763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -9978,20 +12771,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 540 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:51.969558Z","endpoints":[{"dns_records":["26337fb7-01b9-46ef-9738-52cb5b3156be.mgdb.fr-par.scw.cloud"],"id":"40146d9b-a64b-4254-a64d-0a88c9cbf0fa","ips":[],"port":27017,"public":{}}],"id":"26337fb7-01b9-46ef-9738-52cb5b3156be","name":"restored-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "533" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:57 GMT + - Mon, 21 Oct 2024 15:27:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9999,11 +12792,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18e759fb-d303-43c4-a946-efd78e889837 + - 58ba9689-715d-45f9-94d7-f488184995e4 status: 200 OK code: 200 - duration: 60.651928ms - - id: 204 + duration: 83.835017ms + - id: 261 request: proto: HTTP/1.1 proto_major: 1 @@ -10019,28 +12812,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c - method: DELETE + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 129 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"26337fb7-01b9-46ef-9738-52cb5b3156be","type":"not_found"}' headers: Content-Length: - - "536" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:57 GMT + - Mon, 21 Oct 2024 15:32:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10048,11 +12841,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90bbf382-e80e-4e93-af0a-9cdae42f4044 - status: 200 OK - code: 200 - duration: 153.645035ms - - id: 205 + - 194f76ce-9991-4e41-a008-0f0bba185adc + status: 404 Not Found + code: 404 + duration: 624.827104ms + - id: 262 request: proto: HTTP/1.1 proto_major: 1 @@ -10068,28 +12861,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/3ff836c8-7b0c-4281-8daa-95a8239ee5b0 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 417 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:41:41.385140Z","expires_at":"2024-12-31T23:59:59Z","id":"3ff836c8-7b0c-4281-8daa-95a8239ee5b0","instance_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","instance_name":"test-mongodb-from-snapshot","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-21T15:32:10.894032Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:17:57 GMT + - Mon, 21 Oct 2024 15:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10097,11 +12890,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71dcbeff-231c-42ef-ac1b-05ea23fac428 + - 86813560-2a22-4d2e-8fcf-6d86f39e49d8 status: 200 OK code: 200 - duration: 29.200244ms - - id: 206 + duration: 292.251616ms + - id: 263 request: proto: HTTP/1.1 proto_major: 1 @@ -10117,7 +12910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -10125,20 +12918,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 533 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "536" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:18:02 GMT + - Mon, 21 Oct 2024 15:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10146,11 +12939,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b506cb59-2cdb-4f1c-a767-f3169077a267 + - f9bb4215-4f58-46ac-93b1-a244db0c1ead status: 200 OK code: 200 - duration: 74.636344ms - - id: 207 + duration: 26.880384ms + - id: 264 request: proto: HTTP/1.1 proto_major: 1 @@ -10166,8 +12959,8 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 @@ -10176,7 +12969,7 @@ interactions: trailer: {} content_length: 536 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "536" @@ -10185,9 +12978,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:18:07 GMT + - Mon, 21 Oct 2024 15:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10195,11 +12988,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d123345d-599b-44de-9444-9bca7e6c6d21 + - 9e9ada94-d952-4cd2-bcb7-5cc903df7321 status: 200 OK code: 200 - duration: 61.43497ms - - id: 208 + duration: 145.022487ms + - id: 265 request: proto: HTTP/1.1 proto_major: 1 @@ -10215,7 +13008,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -10225,7 +13018,7 @@ interactions: trailer: {} content_length: 536 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "536" @@ -10234,9 +13027,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:18:12 GMT + - Mon, 21 Oct 2024 15:32:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10244,11 +13037,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8363bde0-8fa2-4c4a-b0c8-b6233f144bba + - def35252-f2ac-4db0-8efb-1b2fa6a851d1 status: 200 OK code: 200 - duration: 66.554799ms - - id: 209 + duration: 42.473306ms + - id: 266 request: proto: HTTP/1.1 proto_major: 1 @@ -10264,7 +13057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -10274,7 +13067,7 @@ interactions: trailer: {} content_length: 536 uncompressed: false - body: '{"created_at":"2024-10-17T09:02:05.326052Z","endpoints":[{"dns_records":["92beeb9d-ef18-41a8-87a1-50e987c8bd1c.mgdb.fr-par.scw.cloud"],"id":"f397d2d7-4ee8-4da3-becd-d2e3c73165d7","ips":[],"port":27017,"public":{}}],"id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:30:07.899256Z","endpoints":[{"dns_records":["9ae1221c-f110-4326-8dd9-e04cc6a99b51.mgdb.fr-par.scw.cloud"],"id":"d9a72b70-a441-484f-88c7-d96b67eb3209","ips":[],"port":27017,"public":{}}],"id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","name":"test-mongodb-from-snapshot","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "536" @@ -10283,9 +13076,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:18:17 GMT + - Mon, 21 Oct 2024 15:32:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10293,11 +13086,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17ae3f44-516d-4ffd-a05a-03ad9dd45910 + - fee41851-35ab-4ec2-b877-a9fb92aae12e status: 200 OK code: 200 - duration: 61.599528ms - - id: 210 + duration: 64.90702ms + - id: 267 request: proto: HTTP/1.1 proto_major: 1 @@ -10313,7 +13106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -10323,7 +13116,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","type":"not_found"}' headers: Content-Length: - "129" @@ -10332,9 +13125,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:18:22 GMT + - Mon, 21 Oct 2024 15:37:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10342,11 +13135,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a47e615-9e55-4a7d-9b8c-0113ceaca1e9 + - 02a140ca-e4d7-4f83-b0a8-4eb6d308d96a status: 404 Not Found code: 404 - duration: 32.786896ms - - id: 211 + duration: 165.283314ms + - id: 268 request: proto: HTTP/1.1 proto_major: 1 @@ -10362,7 +13155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/92beeb9d-ef18-41a8-87a1-50e987c8bd1c + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/9ae1221c-f110-4326-8dd9-e04cc6a99b51 method: GET response: proto: HTTP/2.0 @@ -10372,7 +13165,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"92beeb9d-ef18-41a8-87a1-50e987c8bd1c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"9ae1221c-f110-4326-8dd9-e04cc6a99b51","type":"not_found"}' headers: Content-Length: - "129" @@ -10381,9 +13174,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:18:23 GMT + - Mon, 21 Oct 2024 15:37:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10391,11 +13184,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c0c74d7-441a-41da-99e1-827dd48294cf + - 188e56e2-07a1-493c-a7d5-51bc4e11a5b5 status: 404 Not Found code: 404 - duration: 27.005676ms - - id: 212 + duration: 312.064486ms + - id: 269 request: proto: HTTP/1.1 proto_major: 1 @@ -10411,7 +13204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/fde8e567-6e25-4cb8-abf6-62244531ae8b + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/26337fb7-01b9-46ef-9738-52cb5b3156be method: GET response: proto: HTTP/2.0 @@ -10421,7 +13214,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"fde8e567-6e25-4cb8-abf6-62244531ae8b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"26337fb7-01b9-46ef-9738-52cb5b3156be","type":"not_found"}' headers: Content-Length: - "129" @@ -10430,9 +13223,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 09:18:23 GMT + - Mon, 21 Oct 2024 15:37:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10440,7 +13233,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f38cf4f6-a959-4a74-8106-269071871758 + - 6af9b086-f0db-457b-8dec-e8ca8a223f82 status: 404 Not Found code: 404 - duration: 28.442125ms + duration: 187.028385ms diff --git a/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml index 0f38588777..df6ed32e95 100644 --- a/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-snapshot-basic.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:05 GMT + - Mon, 21 Oct 2024 13:59:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3402f143-7362-4be9-a6c6-2d007bc1129f + - 7c446ca3-1715-47a4-93a1-f21e7497144e status: 200 OK code: 200 - duration: 619.172238ms + duration: 842.575943ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:05 GMT + - Mon, 21 Oct 2024 13:59:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff5550d7-4391-434e-a970-a59adfe2464f + - 440c8676-ec92-41dd-a5d3-b33b6361acf7 status: 200 OK code: 200 - duration: 71.184416ms + duration: 130.124431ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:10 GMT + - Mon, 21 Oct 2024 13:59:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78f084e0-74f8-4749-89ad-e4952623dee4 + - 21deb322-a62f-44ca-8154-9e108f3675b4 status: 200 OK code: 200 - duration: 73.063905ms + duration: 94.906441ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:15 GMT + - Mon, 21 Oct 2024 13:59:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b614dca-60ae-446e-9ec1-f6e8962cbbbc + - 07c55c09-5533-4304-a560-ec775c45f66c status: 200 OK code: 200 - duration: 71.486225ms + duration: 98.444363ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:20 GMT + - Mon, 21 Oct 2024 13:59:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a505b527-6c29-4a18-911c-82bbcf64536f + - 6c2c7236-a8f1-4f6d-ad52-1fd85ce2a3e7 status: 200 OK code: 200 - duration: 79.68105ms + duration: 84.422819ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -274,7 +274,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -283,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:25 GMT + - Mon, 21 Oct 2024 13:59:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c663cdfa-f7d8-40d8-a13d-b97bc0d04c5b + - fa77994c-96ea-4cef-bc83-f21f0d3e4450 status: 200 OK code: 200 - duration: 80.681139ms + duration: 97.968497ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:30 GMT + - Mon, 21 Oct 2024 13:59:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7515d8a5-5413-4e60-bd17-604c5878eb52 + - 3c075c4b-6dab-46b6-9436-c7029ba42be9 status: 200 OK code: 200 - duration: 67.454128ms + duration: 79.949389ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:35 GMT + - Mon, 21 Oct 2024 13:59:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5bd9162-48ae-4d22-bf2a-1e79c84a9266 + - 2dedfaf0-9fb3-40e4-8077-769dbcc9caef status: 200 OK code: 200 - duration: 70.053568ms + duration: 253.793627ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:40 GMT + - Mon, 21 Oct 2024 14:00:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb0418bd-a1cb-4109-9f4e-1ed4c2074c79 + - bdf866b2-8ae4-4d6d-88b0-a61628f667e6 status: 200 OK code: 200 - duration: 75.365316ms + duration: 67.586905ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:45 GMT + - Mon, 21 Oct 2024 14:00:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e69d5b03-648d-4013-8192-f3af9f0cabbf + - 3a583d1f-16b4-414a-afa5-9798b3fd7ad4 status: 200 OK code: 200 - duration: 59.03674ms + duration: 124.497434ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:50 GMT + - Mon, 21 Oct 2024 14:00:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f71f83c-4fc9-4ae4-9715-51c9d8ea0311 + - 2c70ea56-a6fd-4e01-bf21-9a49ea4eda7b status: 200 OK code: 200 - duration: 81.615704ms + duration: 149.884142ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -568,7 +568,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -577,9 +577,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:49:55 GMT + - Mon, 21 Oct 2024 14:00:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb865e4d-ebb2-4a2f-90fc-71e7b4c2a3a8 + - ce77cf31-7544-4482-b401-20e9035f7c99 status: 200 OK code: 200 - duration: 64.572707ms + duration: 74.50515ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -617,7 +617,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -626,9 +626,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:00 GMT + - Mon, 21 Oct 2024 14:00:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 219d18f6-fe98-4b88-9dca-57445233906e + - 3f41404d-7976-4cbb-87d9-893aac52f8fc status: 200 OK code: 200 - duration: 65.623439ms + duration: 76.885874ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -666,7 +666,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -675,9 +675,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:06 GMT + - Mon, 21 Oct 2024 14:00:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9467e9e6-7749-4690-afa9-59898833b6c7 + - 44a09e0a-2b09-4008-bd78-903a582fe22f status: 200 OK code: 200 - duration: 55.137346ms + duration: 77.63763ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -724,9 +724,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:11 GMT + - Mon, 21 Oct 2024 14:00:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c8dc37d-96ec-4332-bc96-01dfb9ceb26f + - d7b2a8c4-d8bc-4906-a4af-79a3b48ac336 status: 200 OK code: 200 - duration: 86.429861ms + duration: 75.779958ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -773,9 +773,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:16 GMT + - Mon, 21 Oct 2024 14:00:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 759c163f-c329-43ef-b05a-a3ba8b3c8035 + - eb02a2ad-b10a-43a1-bc96-9656265321dd status: 200 OK code: 200 - duration: 82.260171ms + duration: 98.786496ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -813,7 +813,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -822,9 +822,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:21 GMT + - Mon, 21 Oct 2024 14:00:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9f2d7f3-8976-44e0-8380-eb98a9a4c5ea + - a81520bc-1de6-4ed3-be11-ad21fcc3532e status: 200 OK code: 200 - duration: 63.59816ms + duration: 81.69775ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -862,7 +862,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -871,9 +871,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:26 GMT + - Mon, 21 Oct 2024 14:00:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 056796b1-3bbc-446d-b551-fb7481e9e278 + - f9c3623e-76a7-4e76-8f58-58fbabffd4b0 status: 200 OK code: 200 - duration: 78.164548ms + duration: 76.143077ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -911,7 +911,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -920,9 +920,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:31 GMT + - Mon, 21 Oct 2024 14:00:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e145630-8e19-49e9-bf7d-5cdc245f127f + - ca33000d-fba5-4751-9611-86db1ea82b6b status: 200 OK code: 200 - duration: 79.842813ms + duration: 67.602121ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -960,7 +960,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -969,9 +969,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:36 GMT + - Mon, 21 Oct 2024 14:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31a883e3-c64d-4d8b-b3b4-3c7348fd511a + - 972c27c0-9be3-4d2e-a1a2-ec752ab6ec75 status: 200 OK code: 200 - duration: 71.169913ms + duration: 75.001988ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1009,7 +1009,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1018,9 +1018,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:41 GMT + - Mon, 21 Oct 2024 14:01:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bc3216f-a600-4346-8790-9ab1c69d380a + - d4b511b5-999a-4e35-a378-f2334ec83551 status: 200 OK code: 200 - duration: 85.917668ms + duration: 70.433877ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1067,9 +1067,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:46 GMT + - Mon, 21 Oct 2024 14:01:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fbb1e74-0bf3-4f40-a3ba-baf43522059e + - b521387c-1b0a-42f3-b722-a48e495861a1 status: 200 OK code: 200 - duration: 76.165502ms + duration: 79.105916ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1107,7 +1107,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1116,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:51 GMT + - Mon, 21 Oct 2024 14:01:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8740cf7-8167-4291-be9e-2d265fb7ae8d + - 259e3be7-e2da-4141-8316-6b7a8e585698 status: 200 OK code: 200 - duration: 79.080616ms + duration: 71.68215ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1156,7 +1156,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1165,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:50:56 GMT + - Mon, 21 Oct 2024 14:01:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 429b3d2e-556b-4e8f-a924-7b41aba99837 + - bf371dc8-486b-4c6a-a4ab-a6f59ae9de64 status: 200 OK code: 200 - duration: 63.113313ms + duration: 422.929045ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1205,7 +1205,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1214,9 +1214,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:01 GMT + - Mon, 21 Oct 2024 14:01:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 085fe316-1aef-4a1a-a64c-c4522e88f38c + - 9ceb94de-1aff-4801-8bd0-9e437c3fd2d9 status: 200 OK code: 200 - duration: 63.925528ms + duration: 82.096556ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1254,7 +1254,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1263,9 +1263,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:06 GMT + - Mon, 21 Oct 2024 14:01:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acc2ed44-9ea5-4022-b7ad-135b5ed459da + - 77ae0c48-beab-48de-a282-500faa11ad1b status: 200 OK code: 200 - duration: 74.953538ms + duration: 73.458201ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1303,7 +1303,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1312,9 +1312,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:12 GMT + - Mon, 21 Oct 2024 14:01:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e993b5d7-2386-4c84-8cd9-25c6b8173230 + - 6d0b974d-bd58-4dd3-9562-eb933dc1595e status: 200 OK code: 200 - duration: 59.289083ms + duration: 77.355196ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1352,7 +1352,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1361,9 +1361,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:17 GMT + - Mon, 21 Oct 2024 14:01:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fda5aff-383c-4daf-a8ba-5a4b9ff16b81 + - 2a301080-c826-43fe-8c22-09c3310d09da status: 200 OK code: 200 - duration: 86.701564ms + duration: 76.30794ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1401,7 +1401,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1410,9 +1410,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:22 GMT + - Mon, 21 Oct 2024 14:01:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1f10b28-1175-42e6-8ca7-4d650f826bfb + - 3bc15d0c-1f1e-4210-ad03-bbf0a50dead3 status: 200 OK code: 200 - duration: 82.997266ms + duration: 73.533059ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1450,7 +1450,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1459,9 +1459,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:27 GMT + - Mon, 21 Oct 2024 14:01:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e512b585-cb48-47a3-80f3-ce5486072513 + - cdb6214d-d44e-4dde-ad7c-058321f3628c status: 200 OK code: 200 - duration: 79.636523ms + duration: 74.343128ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1499,7 +1499,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1508,9 +1508,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:32 GMT + - Mon, 21 Oct 2024 14:01:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a05763e2-d89b-4fce-b769-d3a6a119a4e6 + - e5fd8e9e-39c0-40e2-8615-f650778c7c90 status: 200 OK code: 200 - duration: 81.368709ms + duration: 72.367685ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1557,9 +1557,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:37 GMT + - Mon, 21 Oct 2024 14:02:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b89d545-e12b-4c7e-9d7f-9a0b7ae3a790 + - 4827386d-23c9-4289-b9d6-e5c76abcbf71 status: 200 OK code: 200 - duration: 64.205669ms + duration: 72.062885ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1597,7 +1597,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1606,9 +1606,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:42 GMT + - Mon, 21 Oct 2024 14:02:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d7566d1-0063-4aa3-82c2-3eecf30228a4 + - c7a71967-76e2-478e-ab75-098eb3c56fa4 status: 200 OK code: 200 - duration: 69.530202ms + duration: 76.300446ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1646,7 +1646,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1655,9 +1655,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:47 GMT + - Mon, 21 Oct 2024 14:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f8b2b73-8a1b-4e59-865f-791d7f7636d8 + - 5419ede8-2908-4837-8beb-511222831fa7 status: 200 OK code: 200 - duration: 59.597443ms + duration: 73.215677ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1695,7 +1695,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1704,9 +1704,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:52 GMT + - Mon, 21 Oct 2024 14:02:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 614ee293-fc40-44e2-acf5-d73b8e66bb0e + - 1707eb71-c05a-448c-b637-cc96fa8953a7 status: 200 OK code: 200 - duration: 64.069066ms + duration: 77.657568ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1744,7 +1744,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1753,9 +1753,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:51:57 GMT + - Mon, 21 Oct 2024 14:02:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30858eb8-9eac-4f87-b360-5df4fc71b904 + - cffa5e5b-280f-41c8-99ec-1943ab3a9e96 status: 200 OK code: 200 - duration: 53.982261ms + duration: 71.066153ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1793,7 +1793,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1802,9 +1802,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:02 GMT + - Mon, 21 Oct 2024 14:02:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bd7c797-8cb6-4276-a5c7-de235533da2b + - e7773b09-2d46-40e0-80ee-d746de4df245 status: 200 OK code: 200 - duration: 66.551579ms + duration: 68.805567ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1842,7 +1842,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1851,9 +1851,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:07 GMT + - Mon, 21 Oct 2024 14:02:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd67aaf6-3ed2-4789-9b25-68d10c52441c + - 4bee674f-97d9-4ca9-b8bd-71f750b680ce status: 200 OK code: 200 - duration: 73.747938ms + duration: 68.627861ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1891,7 +1891,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1900,9 +1900,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:12 GMT + - Mon, 21 Oct 2024 14:02:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b6194ad-19e0-44b5-af4c-8ba1e179b1d9 + - f018745a-3bd5-4590-82ad-a235931f87ca status: 200 OK code: 200 - duration: 88.571786ms + duration: 84.504044ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1940,7 +1940,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1949,9 +1949,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:17 GMT + - Mon, 21 Oct 2024 14:02:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1959,10 +1959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84e377a1-7730-4cca-abb1-84a8c8398931 + - 646dd771-c249-4b2e-9146-7cf317edcaba status: 200 OK code: 200 - duration: 58.641205ms + duration: 71.439081ms - id: 40 request: proto: HTTP/1.1 @@ -1979,7 +1979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -1989,7 +1989,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1998,9 +1998,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:23 GMT + - Mon, 21 Oct 2024 14:02:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2008,10 +2008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 050b457b-7114-4bed-b0b6-7820916746bb + - ad06cb9e-5869-4398-85ea-1f1f2d154160 status: 200 OK code: 200 - duration: 73.093092ms + duration: 76.332743ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2036,20 +2036,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:28 GMT + - Mon, 21 Oct 2024 14:18:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,10 +2057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 693d1dd7-1415-4161-a627-cbbf9e803ce7 + - 060faf5a-6d42-460e-a66b-2ac81d9ab0a4 status: 200 OK code: 200 - duration: 70.319959ms + duration: 130.653666ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2085,20 +2085,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:33 GMT + - Mon, 21 Oct 2024 14:18:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2106,48 +2106,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bec36d9-0b08-472b-97a9-2a03ed245d1b + - 856a4902-44d8-44af-9c5d-586ba550c368 status: 200 OK code: 200 - duration: 70.038982ms + duration: 25.959958ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 60 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 378 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:18:43.534339Z","expires_at":"2024-12-31T23:59:59Z","id":"b2f10807-8461-499f-9154-978d52331b82","instance_id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:38 GMT + - Mon, 21 Oct 2024 14:18:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2155,10 +2157,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bae5cc5-2f67-4c07-ac5c-5ac657a15d22 + - 9d725223-7fb4-40c8-86d8-304e21ca206b status: 200 OK code: 200 - duration: 210.917973ms + duration: 207.385706ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2177,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/b2f10807-8461-499f-9154-978d52331b82 method: GET response: proto: HTTP/2.0 @@ -2183,20 +2185,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 378 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:18:43.534339Z","expires_at":"2024-12-31T23:59:59Z","id":"b2f10807-8461-499f-9154-978d52331b82","instance_id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:43 GMT + - Mon, 21 Oct 2024 14:18:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2204,10 +2206,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e223a10-49fd-484a-9e6d-2fd5669a556c + - 3b9c0dc0-59e7-4d01-8eea-7c2e92ef1f6a status: 200 OK code: 200 - duration: 70.753173ms + duration: 64.767061ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2226,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/b2f10807-8461-499f-9154-978d52331b82 method: GET response: proto: HTTP/2.0 @@ -2232,20 +2234,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 378 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:18:43.534339Z","expires_at":"2024-12-31T23:59:59Z","id":"b2f10807-8461-499f-9154-978d52331b82","instance_id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:48 GMT + - Mon, 21 Oct 2024 14:18:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2253,10 +2255,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42c413f7-93e4-47fe-8e5b-542b6c76c4dd + - ed9dac36-26c0-4a7a-b8ed-92aa7edf8561 status: 200 OK code: 200 - duration: 78.676787ms + duration: 60.785982ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2275,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/b2f10807-8461-499f-9154-978d52331b82 method: GET response: proto: HTTP/2.0 @@ -2281,20 +2283,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 409 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:18:43.534339Z","expires_at":"2024-12-31T23:59:59Z","id":"b2f10807-8461-499f-9154-978d52331b82","instance_id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:18:44.431554Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:54 GMT + - Mon, 21 Oct 2024 14:18:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2302,10 +2304,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 137cc50d-c63b-4092-8745-c91419694d93 + - 308180f8-a82c-4b11-b065-81eb0802362b status: 200 OK code: 200 - duration: 714.114142ms + duration: 70.449579ms - id: 47 request: proto: HTTP/1.1 @@ -2322,7 +2324,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/b2f10807-8461-499f-9154-978d52331b82 method: GET response: proto: HTTP/2.0 @@ -2330,20 +2332,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 409 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:18:43.534339Z","expires_at":"2024-12-31T23:59:59Z","id":"b2f10807-8461-499f-9154-978d52331b82","instance_id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:18:44.431554Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:52:59 GMT + - Mon, 21 Oct 2024 14:18:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2351,10 +2353,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 300de9b0-77b3-4da2-bc5f-a38488b37323 + - 449f7acc-4636-4ccd-b928-ae64a0baeeaa status: 200 OK code: 200 - duration: 66.481457ms + duration: 25.556622ms - id: 48 request: proto: HTTP/1.1 @@ -2371,7 +2373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2379,20 +2381,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:04 GMT + - Mon, 21 Oct 2024 14:18:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2400,10 +2402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7aa0ae00-603b-4c70-9b8f-abed0bb0db4f + - bcc55cbf-5486-4257-a8a0-11f8ee817c2b status: 200 OK code: 200 - duration: 69.131713ms + duration: 85.1182ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/b2f10807-8461-499f-9154-978d52331b82 method: GET response: proto: HTTP/2.0 @@ -2428,20 +2430,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 409 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:18:43.534339Z","expires_at":"2024-12-31T23:59:59Z","id":"b2f10807-8461-499f-9154-978d52331b82","instance_id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:18:44.431554Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:09 GMT + - Mon, 21 Oct 2024 14:18:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2449,10 +2451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4db3299-0163-4d8b-8962-37af0cff3650 + - 02d7abdb-c576-4236-a009-a8c0ca6e677f status: 200 OK code: 200 - duration: 74.465387ms + duration: 59.16041ms - id: 50 request: proto: HTTP/1.1 @@ -2469,28 +2471,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/b2f10807-8461-499f-9154-978d52331b82 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 412 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:18:43.534339Z","expires_at":"2024-12-31T23:59:59Z","id":"b2f10807-8461-499f-9154-978d52331b82","instance_id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-21T14:18:56.126676Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:14 GMT + - Mon, 21 Oct 2024 14:18:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2498,10 +2500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b596519-a699-4aa7-b4a5-ddb57285e226 + - 0ad0368e-ff84-4a18-8eb1-d094f73911d3 status: 200 OK code: 200 - duration: 73.826737ms + duration: 136.042969ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2526,20 +2528,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:19 GMT + - Mon, 21 Oct 2024 14:18:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2547,10 +2549,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7459540b-8b1e-4b3c-9d30-22d0e9cefbe1 + - 2a51320e-c5fc-4863-ab99-dc61adf55947 status: 200 OK code: 200 - duration: 63.546468ms + duration: 69.729838ms - id: 52 request: proto: HTTP/1.1 @@ -2567,28 +2569,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:24 GMT + - Mon, 21 Oct 2024 14:18:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2596,10 +2598,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4941e7f7-9152-408e-982a-fa708fbe6c34 + - cae2833f-32e4-4364-bcd4-759e0a3eb07d status: 200 OK code: 200 - duration: 83.552438ms + duration: 129.893872ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2624,20 +2626,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:29 GMT + - Mon, 21 Oct 2024 14:18:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2645,10 +2647,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08d9cc3c-9298-4f6c-b519-23bdd8e88b80 + - eb559eb9-81af-444b-b550-bf36330e3781 status: 200 OK code: 200 - duration: 78.835936ms + duration: 58.546801ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2673,20 +2675,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:34 GMT + - Mon, 21 Oct 2024 14:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2694,10 +2696,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd1ac9fc-8ac0-4e52-826e-3ef81cba6c31 + - 3e499bc6-7d7c-42b1-8fab-41e77884dc26 status: 200 OK code: 200 - duration: 69.890508ms + duration: 68.834835ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2716,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2722,20 +2724,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:39 GMT + - Mon, 21 Oct 2024 14:19:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,10 +2745,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27c87af8-0d4e-4c4a-b19a-90741bd68b89 + - ace9646c-ee91-4d2c-92fd-dee8117090b7 status: 200 OK code: 200 - duration: 59.854799ms + duration: 275.747417ms - id: 56 request: proto: HTTP/1.1 @@ -2763,7 +2765,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2771,20 +2773,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:44 GMT + - Mon, 21 Oct 2024 14:19:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2792,10 +2794,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bea7ed5-d0fe-444d-af1f-62f2017541d1 + - 22488671-732b-4277-99bb-0c9b46657c01 status: 200 OK code: 200 - duration: 93.290949ms + duration: 82.459362ms - id: 57 request: proto: HTTP/1.1 @@ -2812,7 +2814,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2820,20 +2822,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:50 GMT + - Mon, 21 Oct 2024 14:19:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2841,10 +2843,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fcbdf81-24d8-4773-904f-80d72fc38b12 + - 9cdd1ef1-ae4f-4f1c-a4ce-25a9b442be9d status: 200 OK code: 200 - duration: 100.522095ms + duration: 75.774691ms - id: 58 request: proto: HTTP/1.1 @@ -2861,7 +2863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2869,20 +2871,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:53:55 GMT + - Mon, 21 Oct 2024 14:19:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2890,10 +2892,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65041ab2-5f54-40fc-96d0-820b28ef9f7e + - 58d9e258-34e4-49ce-ba09-30ebb8d7ed92 status: 200 OK code: 200 - duration: 85.751627ms + duration: 76.529394ms - id: 59 request: proto: HTTP/1.1 @@ -2910,7 +2912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2918,20 +2920,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:00 GMT + - Mon, 21 Oct 2024 14:19:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2939,10 +2941,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62e85342-cfb0-4ddd-99a1-0145e6ceb066 + - dcb0daef-e542-4d72-8be1-23948b2b3084 status: 200 OK code: 200 - duration: 63.579226ms + duration: 68.847116ms - id: 60 request: proto: HTTP/1.1 @@ -2959,7 +2961,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -2967,20 +2969,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:05 GMT + - Mon, 21 Oct 2024 14:19:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2988,10 +2990,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8ee2219-1e88-4cc1-8bc7-22c5bbcc6589 + - 7fda5022-e32f-4f84-bb20-e631d670185d status: 200 OK code: 200 - duration: 65.406281ms + duration: 68.356632ms - id: 61 request: proto: HTTP/1.1 @@ -3008,7 +3010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3016,20 +3018,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:10 GMT + - Mon, 21 Oct 2024 14:19:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3037,10 +3039,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d4e4298-e217-4770-a6fe-daa5feaf9b69 + - e013335f-d125-4a4a-a9fa-1a6ed3234e3d status: 200 OK code: 200 - duration: 73.115756ms + duration: 74.517377ms - id: 62 request: proto: HTTP/1.1 @@ -3057,7 +3059,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3065,20 +3067,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:15 GMT + - Mon, 21 Oct 2024 14:19:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3086,10 +3088,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdc13802-ffcf-4db6-a046-a5cc5c9bb45b + - d4ee57c4-d514-4e33-a158-a71ac0ebb0d4 status: 200 OK code: 200 - duration: 75.118845ms + duration: 79.86794ms - id: 63 request: proto: HTTP/1.1 @@ -3106,7 +3108,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3114,20 +3116,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:20 GMT + - Mon, 21 Oct 2024 14:19:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3135,10 +3137,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff2f9356-f305-4351-8db4-a21f31c5003b + - 00750e6f-7321-4c9a-b863-c439f6f458d4 status: 200 OK code: 200 - duration: 124.328216ms + duration: 76.785054ms - id: 64 request: proto: HTTP/1.1 @@ -3155,7 +3157,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3163,20 +3165,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:25 GMT + - Mon, 21 Oct 2024 14:19:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3184,10 +3186,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fafd652f-31c4-4cc9-98b7-9d6bb0eff8dc + - 8ca0f4ab-583f-457c-9bda-d19ffba845a1 status: 200 OK code: 200 - duration: 80.327519ms + duration: 69.750289ms - id: 65 request: proto: HTTP/1.1 @@ -3204,7 +3206,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3212,20 +3214,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:30 GMT + - Mon, 21 Oct 2024 14:19:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3233,10 +3235,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3114719d-de5a-4fb2-b962-f8979008dff9 + - 6bb495ac-bef7-4c33-b4d5-9144816bcd91 status: 200 OK code: 200 - duration: 76.585057ms + duration: 66.180266ms - id: 66 request: proto: HTTP/1.1 @@ -3253,7 +3255,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3261,20 +3263,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:35 GMT + - Mon, 21 Oct 2024 14:20:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3282,10 +3284,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b87da819-cc87-4228-b25a-d0254d3f5afd + - 303f886f-bd93-4926-8361-55d0233d01f3 status: 200 OK code: 200 - duration: 88.147534ms + duration: 67.891314ms - id: 67 request: proto: HTTP/1.1 @@ -3302,7 +3304,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3310,20 +3312,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:40 GMT + - Mon, 21 Oct 2024 14:20:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3331,10 +3333,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 048b9108-9d30-4a7d-a2dd-551274699c53 + - 5a4a7b4c-4a8a-446e-8288-10b2a87c453e status: 200 OK code: 200 - duration: 68.970228ms + duration: 76.475157ms - id: 68 request: proto: HTTP/1.1 @@ -3351,7 +3353,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3359,20 +3361,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:45 GMT + - Mon, 21 Oct 2024 14:20:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3380,10 +3382,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ede7713c-827b-442d-8d15-b001689703d3 + - 64cdcd9f-f61d-46bd-80ce-60a0b6ed0095 status: 200 OK code: 200 - duration: 82.828382ms + duration: 27.708983ms - id: 69 request: proto: HTTP/1.1 @@ -3400,7 +3402,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3408,20 +3410,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T13:59:27.075714Z","endpoints":[{"dns_records":["048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504.mgdb.fr-par.scw.cloud"],"id":"8978b6b6-330a-4cab-bd6a-9325361f0dc7","ips":[],"port":27017,"public":{}}],"id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:51 GMT + - Mon, 21 Oct 2024 14:20:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3429,10 +3431,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a253991-1872-434f-9898-399724b7b0bc + - 6b7b5a33-8310-49e7-9ad1-1dd19911376c status: 200 OK code: 200 - duration: 61.955668ms + duration: 67.548123ms - id: 70 request: proto: HTTP/1.1 @@ -3449,7 +3451,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504 method: GET response: proto: HTTP/2.0 @@ -3457,20 +3459,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 129 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"048dd9fe-e4c3-4f49-bbfb-fbaaccd5c504","type":"not_found"}' headers: Content-Length: - - "535" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:54:56 GMT + - Mon, 21 Oct 2024 14:20:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3478,10 +3480,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b589c0f-f180-4641-9b36-1016eb706d8b - status: 200 OK - code: 200 - duration: 89.541165ms + - 3e7f90bd-e980-4297-86ba-6248e01ac5fb + status: 404 Not Found + code: 404 + duration: 27.40808ms - id: 71 request: proto: HTTP/1.1 @@ -3498,105 +3500,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55: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: - - f81c79e8-e3e2-4c92-8c49-333558352a86 - status: 200 OK - code: 200 - duration: 68.600262ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55: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: - - f9dc815a-ce3f-459b-bcbb-596899c64b6a - status: 200 OK - code: 200 - duration: 70.991904ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/b2f10807-8461-499f-9154-978d52331b82 method: GET response: proto: HTTP/2.0 @@ -3604,20 +3508,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 129 uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"b2f10807-8461-499f-9154-978d52331b82","type":"not_found"}' headers: Content-Length: - - "535" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:55:11 GMT + - Mon, 21 Oct 2024 14:20:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3625,1528 +3529,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 504efe4c-fc10-448d-8b67-38182b70e9b9 - status: 200 OK - code: 200 - duration: 79.037358ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55: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: - - 3d55a7f5-75c9-46cd-bdf0-ca55302d3d7a - status: 200 OK - code: 200 - duration: 92.825552ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55: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: - - 8b0558b8-4774-4238-bdec-7ef35d7f909a - status: 200 OK - code: 200 - duration: 76.955486ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 153d6806-dac1-4a27-a99b-8950a72ea051 - status: 200 OK - code: 200 - duration: 64.635312ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55: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: - - 9f647f07-3673-4f42-8098-f9dda5c0babd - status: 200 OK - code: 200 - duration: 70.088921ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cd1e9cc9-6cb7-41f8-94b4-5b1cfdb296da - status: 200 OK - code: 200 - duration: 70.138379ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55: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: - - ab96ddb2-dd10-4b11-839d-ea49b75b601a - status: 200 OK - code: 200 - duration: 75.852071ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55: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: - - 8633bb74-30b9-42e1-8483-ef4ab4925436 - status: 200 OK - code: 200 - duration: 75.664174ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55: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: - - f13b276e-ac6a-4e86-9c27-4f9161298f0a - status: 200 OK - code: 200 - duration: 80.470333ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:55:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 08b5e8c5-81e1-40a3-a3b2-ba24efb15316 - status: 200 OK - code: 200 - duration: 83.109024ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - f4f66889-86d6-4942-a8e9-d3e523bf5b20 - status: 200 OK - code: 200 - duration: 82.72211ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 3e95ce68-ed56-43a1-b859-81c859241641 - status: 200 OK - code: 200 - duration: 45.595125ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 60 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 378 - uncompressed: false - body: '{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' - headers: - Content-Length: - - "378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 27cc0c1b-b2e5-45c7-a317-a9f93c385ce0 - status: 200 OK - code: 200 - duration: 181.29454ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 411 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "411" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - e505917a-a54d-4a37-b31b-44485891d655 - status: 200 OK - code: 200 - duration: 78.149456ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 411 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "411" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a7083ba-5b08-4b4b-841a-a9c0b520b7b0 - status: 200 OK - code: 200 - duration: 84.609158ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:56:03.075971Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 5c548eac-275c-4f13-8f67-5eb9fee6a979 - status: 200 OK - code: 200 - duration: 79.382629ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:56:03.075971Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 4aa1cc0d-d679-40d2-b367-8e76b27c60ee - status: 200 OK - code: 200 - duration: 29.152308ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 1c047019-eae2-4ca4-97ad-36ee4e4a5221 - status: 200 OK - code: 200 - duration: 64.156791ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:56:03.075971Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - be2c2e78-c6b5-43fc-a250-5ac63e3a5b48 - status: 200 OK - code: 200 - duration: 32.071977ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/2e03d6be-e7ac-4768-a872-f27136749ca9 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"created_at":"2024-10-17T08:56:02.254042Z","expires_at":"2024-12-31T23:59:59Z","id":"2e03d6be-e7ac-4768-a872-f27136749ca9","instance_id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-17T08:56:14.149828Z","volume_type":{"type":"sbs_5k"}}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - b526ace5-7a49-4807-b141-fd9fe474019b - status: 200 OK - code: 200 - duration: 118.893242ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 80d4c7a6-f06c-4ed4-8e7d-c1c30d7a4e9b - status: 200 OK - code: 200 - duration: 71.097888ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - afc404cf-2223-47df-84e1-041e4035ccbe - status: 200 OK - code: 200 - duration: 153.210901ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - c0a741ee-ce9b-4b9e-b66a-6028850fd85f - status: 200 OK - code: 200 - duration: 60.716179ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d48c3e71-27cc-4155-addf-f34f70b7e2bd - status: 200 OK - code: 200 - duration: 81.086696ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 8bd287b6-de95-4fef-8b1d-524bcf042669 - status: 200 OK - code: 200 - duration: 78.354855ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 468018d8-c5a6-479f-b499-4fbf68df3ac2 - status: 200 OK - code: 200 - duration: 68.303536ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 14f9f5e5-bf65-4d69-b3b0-7b5f9e16ed06 - status: 200 OK - code: 200 - duration: 70.689519ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1f6a3ce0-d736-4507-8e1d-655a131ce481 - status: 200 OK - code: 200 - duration: 58.360558ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 69087843-c570-4073-9090-a164a2050873 - status: 200 OK - code: 200 - duration: 84.699773ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:49:04.533930Z","endpoints":[{"dns_records":["279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a.mgdb.fr-par.scw.cloud"],"id":"48de235a-990e-4c69-97f0-6fc1c50883fe","ips":[],"port":27017,"public":{}}],"id":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 8b7ee01b-1336-4ffe-a716-a790b3d4c8da - status: 200 OK - code: 200 - duration: 66.245005ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a - 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":"279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - 7cb653a0-f200-4ad1-860e-108f1439db33 + - c59e9541-b0a9-40ef-946d-2f9ff2120d5a status: 404 Not Found code: 404 - duration: 25.823508ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=279e9fb3-9eeb-4cee-aaaf-ef0f5b690f5a&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33 - uncompressed: false - body: '{"snapshots":[],"total_count":0}' - headers: - Content-Length: - - "33" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:56: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: - - b7639cd9-f078-4a28-8938-442610f00c49 - status: 200 OK - code: 200 - duration: 76.136837ms + duration: 30.556374ms diff --git a/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml b/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml index 141ccadb52..612c6b7a8a 100644 --- a/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml +++ b/internal/services/mongodb/testdata/mongo-db-snapshot-update.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:21:41 GMT + - Mon, 21 Oct 2024 14:00:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c11807b6-6191-4877-a4ad-ba54ecb2d275 + - bccefedd-7268-4b1c-848c-7d577b5dd7bf status: 200 OK code: 200 - duration: 1.110495268s + duration: 764.622036ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:21:41 GMT + - Mon, 21 Oct 2024 14:00:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9487a5b9-eb21-4f30-b39b-39be2c00927e + - d2d507d9-de05-40bf-bded-878c84c07bbe status: 200 OK code: 200 - duration: 63.624461ms + duration: 37.126374ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:21:46 GMT + - Mon, 21 Oct 2024 14:00:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acb42ab7-36db-4f98-8fbb-b13917f302f4 + - 7423ffab-a8fb-40a2-87ce-6997e8d678a5 status: 200 OK code: 200 - duration: 75.280215ms + duration: 66.42033ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:21:52 GMT + - Mon, 21 Oct 2024 14:00:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a175724a-60fa-4232-9a7e-4b8e469f3f0f + - f54cd07a-0fa9-40ff-9c7a-9f389f9d01ba status: 200 OK code: 200 - duration: 146.310843ms + duration: 81.381139ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:21:57 GMT + - Mon, 21 Oct 2024 14:00:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39b07755-197e-4b58-8a97-5185aa1ab696 + - 00d8e6be-b304-40c0-aa40-172f0bab48fa status: 200 OK code: 200 - duration: 67.338936ms + duration: 88.319661ms - id: 5 request: proto: HTTP/1.1 @@ -264,7 +264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -274,7 +274,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -283,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:02 GMT + - Mon, 21 Oct 2024 14:00:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 474e7584-6f69-44f3-95e7-28efbc002f49 + - 28655565-4fa5-4350-842d-ae4014995daa status: 200 OK code: 200 - duration: 68.080699ms + duration: 42.839587ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:07 GMT + - Mon, 21 Oct 2024 14:00:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c190700d-bc00-43b3-ab28-c8dc0ed90906 + - b492b124-0de3-4bcb-8360-e656207b188d status: 200 OK code: 200 - duration: 57.90128ms + duration: 44.335325ms - id: 7 request: proto: HTTP/1.1 @@ -362,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:12 GMT + - Mon, 21 Oct 2024 14:00:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc4c89b2-7b75-4f02-8a71-69458a577aff + - cbd0b99d-4751-4bf8-b1a4-9c17b3eab823 status: 200 OK code: 200 - duration: 62.952032ms + duration: 28.308316ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:17 GMT + - Mon, 21 Oct 2024 14:00:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbab9ab7-5260-4767-98cd-3cac5d89b9af + - 3c304f16-0a0c-4e65-8a20-520ed197dd10 status: 200 OK code: 200 - duration: 67.536929ms + duration: 73.820018ms - id: 9 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:22 GMT + - Mon, 21 Oct 2024 14:00:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f87c14c-0770-4799-a46d-209ce7ba5d01 + - ad9f35fc-6faa-49ba-bada-10354861fb39 status: 200 OK code: 200 - duration: 87.578971ms + duration: 142.333229ms - id: 10 request: proto: HTTP/1.1 @@ -509,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:27 GMT + - Mon, 21 Oct 2024 14:01:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4208522-7d7e-46c7-b9b6-8bf534a75337 + - 5d695cb7-501d-48a0-b9d1-313031503196 status: 200 OK code: 200 - duration: 77.602742ms + duration: 65.913323ms - id: 11 request: proto: HTTP/1.1 @@ -558,7 +558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -568,7 +568,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -577,9 +577,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:32 GMT + - Mon, 21 Oct 2024 14:01:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba01eceb-adee-457e-a559-5b3a293d7237 + - 9137e3e5-e1b0-4e72-a274-e1e190c1383b status: 200 OK code: 200 - duration: 76.417931ms + duration: 114.343559ms - id: 12 request: proto: HTTP/1.1 @@ -607,7 +607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -617,7 +617,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -626,9 +626,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:37 GMT + - Mon, 21 Oct 2024 14:01:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34248500-5f5e-4e52-8467-7612cd0c1659 + - a399b6d3-72b0-415f-a657-52e8b0234d1e status: 200 OK code: 200 - duration: 71.396904ms + duration: 68.499908ms - id: 13 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -666,7 +666,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -675,9 +675,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:42 GMT + - Mon, 21 Oct 2024 14:01:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99195a55-c2cd-45d9-b11c-80d0cbae7a67 + - 4039317f-022a-4026-96c6-dd19c22777f4 status: 200 OK code: 200 - duration: 74.004704ms + duration: 36.40022ms - id: 14 request: proto: HTTP/1.1 @@ -705,7 +705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -724,9 +724,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:47 GMT + - Mon, 21 Oct 2024 14:01:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f06c1aa4-f86b-4f64-a222-3dbd34f3b2d3 + - a11dde7d-da3a-4234-8815-f18940039520 status: 200 OK code: 200 - duration: 76.765504ms + duration: 27.269213ms - id: 15 request: proto: HTTP/1.1 @@ -754,7 +754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -764,7 +764,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -773,9 +773,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:53 GMT + - Mon, 21 Oct 2024 14:01:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9a18a14-ebb6-4441-bd9b-5676c119af9f + - 1d899ada-50f5-423f-8169-4cd8908e443f status: 200 OK code: 200 - duration: 445.948006ms + duration: 80.022684ms - id: 16 request: proto: HTTP/1.1 @@ -803,7 +803,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -813,7 +813,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -822,9 +822,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:22:58 GMT + - Mon, 21 Oct 2024 14:01:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 936f6614-1bbb-4b7e-b27d-7ef508bcdb8e + - 19f20b78-f3c7-4535-8080-802942e5e74b status: 200 OK code: 200 - duration: 28.758932ms + duration: 69.187393ms - id: 17 request: proto: HTTP/1.1 @@ -852,7 +852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -862,7 +862,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -871,9 +871,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:03 GMT + - Mon, 21 Oct 2024 14:01:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63a27277-70fc-4725-9e4b-e9fdb354b164 + - 0e65282d-c075-448a-8f4a-e62cea995948 status: 200 OK code: 200 - duration: 69.716269ms + duration: 72.136534ms - id: 18 request: proto: HTTP/1.1 @@ -901,7 +901,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -911,7 +911,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -920,9 +920,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:08 GMT + - Mon, 21 Oct 2024 14:01:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a004e175-504a-4f0e-ae4e-329c438e82fc + - 988dae71-149e-45d7-b3b0-e06551e1173e status: 200 OK code: 200 - duration: 67.890178ms + duration: 436.135026ms - id: 19 request: proto: HTTP/1.1 @@ -950,7 +950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -960,7 +960,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -969,9 +969,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:13 GMT + - Mon, 21 Oct 2024 14:01:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9522bf72-c9c1-457e-ae73-857f14dda653 + - 9077463b-919b-4db4-b62e-6d847828ed91 status: 200 OK code: 200 - duration: 71.991867ms + duration: 32.96002ms - id: 20 request: proto: HTTP/1.1 @@ -999,7 +999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1009,7 +1009,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1018,9 +1018,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:18 GMT + - Mon, 21 Oct 2024 14:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b75c883d-f6c1-4c86-a947-b640d3c630dd + - c2181814-b766-4fb5-9284-8cad694da6b9 status: 200 OK code: 200 - duration: 68.905575ms + duration: 74.076355ms - id: 21 request: proto: HTTP/1.1 @@ -1048,7 +1048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1058,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1067,9 +1067,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:23 GMT + - Mon, 21 Oct 2024 14:01:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3782bb64-a6a0-4052-86ae-69d228d6652d + - a4f77108-1362-407b-9db7-1eb181bad9fc status: 200 OK code: 200 - duration: 21.347934ms + duration: 74.721854ms - id: 22 request: proto: HTTP/1.1 @@ -1097,7 +1097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1107,7 +1107,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1116,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:28 GMT + - Mon, 21 Oct 2024 14:02:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f39d4513-f627-42e7-8ed3-69fe34cc47b2 + - d24f0b84-e245-4eca-b1ae-c2480e20fb6d status: 200 OK code: 200 - duration: 33.350662ms + duration: 62.503571ms - id: 23 request: proto: HTTP/1.1 @@ -1146,7 +1146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1156,7 +1156,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1165,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:33 GMT + - Mon, 21 Oct 2024 14:02:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76846c11-d7b3-4563-ab0b-0bb969771158 + - 2c8dd75a-40d9-4ae5-8041-295804a05d3f status: 200 OK code: 200 - duration: 37.322698ms + duration: 64.341784ms - id: 24 request: proto: HTTP/1.1 @@ -1195,7 +1195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1205,7 +1205,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1214,9 +1214,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:38 GMT + - Mon, 21 Oct 2024 14:02:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cb32738-024e-4961-aa60-ce70b86cddd5 + - 499b59c7-f6b6-471f-b9d0-5716c0573a9c status: 200 OK code: 200 - duration: 43.856412ms + duration: 73.132618ms - id: 25 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1254,7 +1254,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1263,9 +1263,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:43 GMT + - Mon, 21 Oct 2024 14:02:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,10 +1273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 076f130a-9958-4a25-a894-dcd5e8990fc9 + - 651050e0-c1e3-48d6-9aad-72aa1d690c7e status: 200 OK code: 200 - duration: 68.740591ms + duration: 50.195875ms - id: 26 request: proto: HTTP/1.1 @@ -1293,7 +1293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1303,7 +1303,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1312,9 +1312,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:48 GMT + - Mon, 21 Oct 2024 14:02:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1322,10 +1322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 692ce8d9-d59c-4e5b-a517-03b45bfb88b8 + - f973d8e2-8a0a-4b5e-bda6-8fb58c1a94b5 status: 200 OK code: 200 - duration: 72.505321ms + duration: 65.003461ms - id: 27 request: proto: HTTP/1.1 @@ -1342,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1352,7 +1352,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1361,9 +1361,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:54 GMT + - Mon, 21 Oct 2024 14:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,10 +1371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4fc60f7-8ec2-4a4f-b11a-8d1c29585cd2 + - 1f548378-afc5-437a-9dc4-bf4974c11b36 status: 200 OK code: 200 - duration: 80.390856ms + duration: 77.39884ms - id: 28 request: proto: HTTP/1.1 @@ -1391,7 +1391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1401,7 +1401,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1410,9 +1410,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:23:59 GMT + - Mon, 21 Oct 2024 14:02:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1420,10 +1420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01e94a31-8399-4859-8414-0bd54fccee8c + - 9af6480e-aa47-4f59-8e83-7c9e4105b1dc status: 200 OK code: 200 - duration: 69.233993ms + duration: 64.773692ms - id: 29 request: proto: HTTP/1.1 @@ -1440,7 +1440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1450,7 +1450,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1459,9 +1459,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:04 GMT + - Mon, 21 Oct 2024 14:02:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dc7d198-2a8a-4d1e-931e-b701b24b0069 + - f2a54410-9cd6-476c-8c38-c4f7a57f8aa9 status: 200 OK code: 200 - duration: 65.262508ms + duration: 66.505853ms - id: 30 request: proto: HTTP/1.1 @@ -1489,7 +1489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1499,7 +1499,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1508,9 +1508,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:09 GMT + - Mon, 21 Oct 2024 14:02:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 472c73e5-c8f0-4344-90f2-da1e39ac35c6 + - 933be959-ac7b-489e-98b3-975c647ea8e7 status: 200 OK code: 200 - duration: 82.093392ms + duration: 63.86184ms - id: 31 request: proto: HTTP/1.1 @@ -1538,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1548,7 +1548,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1557,9 +1557,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:14 GMT + - Mon, 21 Oct 2024 14:18:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1567,10 +1567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 469b723b-b90b-4c9b-807f-e16ccbb1197d + - fac1bffc-e704-4971-b480-98f0850048a8 status: 200 OK code: 200 - duration: 66.371104ms + duration: 702.075948ms - id: 32 request: proto: HTTP/1.1 @@ -1587,7 +1587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1597,7 +1597,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1606,9 +1606,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:19 GMT + - Mon, 21 Oct 2024 14:18:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1616,10 +1616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2569cada-6f93-4df8-b3ca-22d55c28bebc + - 46b2aab4-2e75-496b-a971-f21e2239cd93 status: 200 OK code: 200 - duration: 74.923932ms + duration: 70.715015ms - id: 33 request: proto: HTTP/1.1 @@ -1636,7 +1636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1646,7 +1646,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1655,9 +1655,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:24 GMT + - Mon, 21 Oct 2024 14:18:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1665,10 +1665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ff05b69-6f82-4bb6-ac5f-e4fc9f64e851 + - ea76758c-fc2a-4bb5-b470-48a2ea2f8718 status: 200 OK code: 200 - duration: 71.178203ms + duration: 79.052635ms - id: 34 request: proto: HTTP/1.1 @@ -1685,7 +1685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1695,7 +1695,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1704,9 +1704,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:29 GMT + - Mon, 21 Oct 2024 14:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1714,10 +1714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ef71cb2-5c88-4bc2-837e-0b6aaa6e9526 + - 23b8e6b3-fdc6-4123-b5e9-3553ca892da2 status: 200 OK code: 200 - duration: 72.351082ms + duration: 31.674649ms - id: 35 request: proto: HTTP/1.1 @@ -1734,7 +1734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1744,7 +1744,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1753,9 +1753,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:34 GMT + - Mon, 21 Oct 2024 14:19:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1763,10 +1763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a96efca-e229-4c73-9692-50688b625716 + - e94c6119-42df-479f-a801-b1593cbb0b0b status: 200 OK code: 200 - duration: 76.40285ms + duration: 69.819372ms - id: 36 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1793,7 +1793,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1802,9 +1802,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:39 GMT + - Mon, 21 Oct 2024 14:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1812,10 +1812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cdbadad-a9b8-458a-84ae-37be5ba6513f + - a3690275-1adc-4a57-b571-589267a3461b status: 200 OK code: 200 - duration: 77.049034ms + duration: 177.445244ms - id: 37 request: proto: HTTP/1.1 @@ -1832,7 +1832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1842,7 +1842,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1851,9 +1851,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:44 GMT + - Mon, 21 Oct 2024 14:19:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1861,10 +1861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dddd3f80-e422-402b-a74b-fd9c212c7241 + - d991d055-8990-4351-a0fc-a9b2ec246270 status: 200 OK code: 200 - duration: 69.984762ms + duration: 30.528308ms - id: 38 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1891,7 +1891,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1900,9 +1900,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:49 GMT + - Mon, 21 Oct 2024 14:19:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1910,10 +1910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85f9ffb3-c6b8-4561-a252-67e695c6caaa + - fd6e7c72-e791-4b7a-ab52-37a161eaa516 status: 200 OK code: 200 - duration: 94.351572ms + duration: 69.181867ms - id: 39 request: proto: HTTP/1.1 @@ -1930,7 +1930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1940,7 +1940,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1949,9 +1949,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:24:54 GMT + - Mon, 21 Oct 2024 14:19:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1959,10 +1959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7800465a-960e-4f83-9bba-d01af94f53fe + - d63645dd-4882-4747-85f5-d6af7a81249c status: 200 OK code: 200 - duration: 74.760577ms + duration: 65.876373ms - id: 40 request: proto: HTTP/1.1 @@ -1979,7 +1979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -1989,7 +1989,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -1998,9 +1998,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:00 GMT + - Mon, 21 Oct 2024 14:19:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2008,10 +2008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e5b1d17-a7ce-434d-9370-8238d62f83aa + - a57f9dc0-3b8a-4af2-8d89-81a02642f465 status: 200 OK code: 200 - duration: 78.835196ms + duration: 72.888868ms - id: 41 request: proto: HTTP/1.1 @@ -2028,7 +2028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2038,7 +2038,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2047,9 +2047,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:05 GMT + - Mon, 21 Oct 2024 14:19:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2057,10 +2057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac4a552e-0807-492f-9ef4-3f30b28ef236 + - 1260c5bd-a7f9-4fb1-b5ff-d13c58e31579 status: 200 OK code: 200 - duration: 59.990645ms + duration: 67.776073ms - id: 42 request: proto: HTTP/1.1 @@ -2077,7 +2077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2087,7 +2087,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2096,9 +2096,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:10 GMT + - Mon, 21 Oct 2024 14:19:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2106,10 +2106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e713f251-178f-448f-9483-cba0a6f9883a + - acde0972-6555-45da-81a6-9f03bc2a1ff7 status: 200 OK code: 200 - duration: 73.557364ms + duration: 35.731246ms - id: 43 request: proto: HTTP/1.1 @@ -2126,7 +2126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2136,7 +2136,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2145,9 +2145,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:15 GMT + - Mon, 21 Oct 2024 14:19:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2155,10 +2155,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f62e0ad0-c0b3-486e-bc57-b0790747aa51 + - ffd2137a-bac7-490e-90b4-00b5fc9b4011 status: 200 OK code: 200 - duration: 70.40638ms + duration: 39.389961ms - id: 44 request: proto: HTTP/1.1 @@ -2175,7 +2175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2185,7 +2185,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2194,9 +2194,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:20 GMT + - Mon, 21 Oct 2024 14:19:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2204,10 +2204,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbce6d16-f75a-4847-a269-9f1db915bceb + - 3da33af5-1518-4e7d-893f-a458129a209c status: 200 OK code: 200 - duration: 76.172152ms + duration: 79.380242ms - id: 45 request: proto: HTTP/1.1 @@ -2224,7 +2224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2234,7 +2234,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - "535" @@ -2243,9 +2243,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:25 GMT + - Mon, 21 Oct 2024 14:19:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2253,10 +2253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c29d38b4-25fc-4678-a136-e392cb19b763 + - 1e085a5c-bc98-47e6-bc9b-d437a6942a79 status: 200 OK code: 200 - duration: 59.386255ms + duration: 66.55985ms - id: 46 request: proto: HTTP/1.1 @@ -2273,7 +2273,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2281,20 +2281,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:30 GMT + - Mon, 21 Oct 2024 14:19:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2302,10 +2302,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6617d5d-cabc-4203-a85f-4c573aa88e3f + - fe9a642f-87c0-48c9-8a8c-39b781a67f24 status: 200 OK code: 200 - duration: 71.036494ms + duration: 47.079625ms - id: 47 request: proto: HTTP/1.1 @@ -2322,7 +2322,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2330,20 +2330,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:35 GMT + - Mon, 21 Oct 2024 14:19:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2351,48 +2351,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c021009-c30e-43d0-9b5f-05d5e29673be + - 89d06e89-6857-4233-a4fe-bd63205f44f3 status: 200 OK code: 200 - duration: 76.92341ms + duration: 59.753115ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 60 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 378 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2024-12-31T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:40 GMT + - Mon, 21 Oct 2024 14:19:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2400,10 +2402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4654b19-eee0-4f36-b7f5-bc32f4c3c6f1 + - 2bcc8998-9a0a-4cda-acde-83bc1296c1e4 status: 200 OK code: 200 - duration: 80.189999ms + duration: 163.397217ms - id: 49 request: proto: HTTP/1.1 @@ -2420,7 +2422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -2428,20 +2430,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 378 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2024-12-31T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:45 GMT + - Mon, 21 Oct 2024 14:19:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2449,10 +2451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d0d3027-767c-49dd-8caf-4258c5cfb299 + - 99468a5d-06fe-47ae-a3e2-ef84d7e384e7 status: 200 OK code: 200 - duration: 63.924619ms + duration: 57.853769ms - id: 50 request: proto: HTTP/1.1 @@ -2469,7 +2471,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -2477,20 +2479,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 378 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2024-12-31T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:50 GMT + - Mon, 21 Oct 2024 14:20:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2498,10 +2500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d1ebc9f-25cd-4b78-8852-45cab3b22c4b + - 0516026a-cdb3-49ef-8bb8-a2e4dd27ba04 status: 200 OK code: 200 - duration: 77.608501ms + duration: 69.497035ms - id: 51 request: proto: HTTP/1.1 @@ -2518,7 +2520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -2526,20 +2528,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 409 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2024-12-31T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:19:58.706393Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:25:55 GMT + - Mon, 21 Oct 2024 14:20:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2547,10 +2549,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0947a951-9450-44d2-8d15-fb902731ac11 + - dcccf293-e264-4a15-9111-4b0358567fd0 status: 200 OK code: 200 - duration: 66.4849ms + duration: 64.502348ms - id: 52 request: proto: HTTP/1.1 @@ -2567,7 +2569,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -2575,20 +2577,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 409 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2024-12-31T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:19:58.706393Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:00 GMT + - Mon, 21 Oct 2024 14:20:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2596,10 +2598,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e7a83cc-437d-47da-b1f5-7c0052e7954d + - 48f2cc0b-a6c6-41d0-9817-4c87a99c17cd status: 200 OK code: 200 - duration: 71.91389ms + duration: 67.055437ms - id: 53 request: proto: HTTP/1.1 @@ -2616,7 +2618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2624,20 +2626,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:05 GMT + - Mon, 21 Oct 2024 14:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2645,10 +2647,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75543b8f-d30f-4ec0-b37b-d53bb69e5dde + - 602b720a-5941-45f4-bff9-54a448321a22 status: 200 OK code: 200 - duration: 66.8386ms + duration: 81.038177ms - id: 54 request: proto: HTTP/1.1 @@ -2665,7 +2667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -2673,20 +2675,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 409 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2024-12-31T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:19:58.706393Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:11 GMT + - Mon, 21 Oct 2024 14:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2694,10 +2696,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e84daaa-9489-49b0-8e77-39e8eac68691 + - 129c64d9-c3ba-4b5e-ae30-69842b0e7056 status: 200 OK code: 200 - duration: 62.493431ms + duration: 24.418879ms - id: 55 request: proto: HTTP/1.1 @@ -2714,7 +2716,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2722,20 +2724,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:16 GMT + - Mon, 21 Oct 2024 14:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2743,10 +2745,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bce2b6a7-b6a1-4276-b2ab-4f6060889cf9 + - b132eb58-0912-4e12-b85c-2985d85b59b2 status: 200 OK code: 200 - duration: 63.991421ms + duration: 70.4047ms - id: 56 request: proto: HTTP/1.1 @@ -2763,7 +2765,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -2771,20 +2773,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 409 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2024-12-31T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:19:58.706393Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:21 GMT + - Mon, 21 Oct 2024 14:20:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2792,48 +2794,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55805f80-07ba-4e9f-8291-23ccd8efb5ad + - 5a800467-f1f5-4643-8ad2-6cd0f4f2a77c status: 200 OK code: 200 - duration: 71.221162ms + duration: 62.501428ms - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"updated-snapshot","expires_at":"2025-09-20T23:59:59Z"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 412 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2025-09-20T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:20:10.574028Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:26 GMT + - Mon, 21 Oct 2024 14:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2841,10 +2845,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8be4c32-a393-497b-ad8d-66f18803fbf8 + - 17af7c8a-4260-4edb-b3ad-27c7cfd3c6de status: 200 OK code: 200 - duration: 66.081741ms + duration: 71.053779ms - id: 58 request: proto: HTTP/1.1 @@ -2861,7 +2865,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -2869,20 +2873,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 412 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2025-09-20T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:20:10.574028Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:31 GMT + - Mon, 21 Oct 2024 14:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2890,10 +2894,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a45e484-fe05-4f27-99de-0bacc178ca90 + - 117be7bc-7cbf-4714-bb83-278fe5d01a90 status: 200 OK code: 200 - duration: 68.17462ms + duration: 25.883222ms - id: 59 request: proto: HTTP/1.1 @@ -2910,7 +2914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -2918,20 +2922,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 412 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2025-09-20T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:20:10.574028Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:36 GMT + - Mon, 21 Oct 2024 14:20:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2939,10 +2943,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8799cef1-63d9-4ff9-ade5-c90df7828ff9 + - ec8d1970-a8aa-448c-86dd-59332a6ac61b status: 200 OK code: 200 - duration: 76.245568ms + duration: 66.796301ms - id: 60 request: proto: HTTP/1.1 @@ -2959,7 +2963,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -2967,20 +2971,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:41 GMT + - Mon, 21 Oct 2024 14:20:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2988,10 +2992,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac170b31-6912-4666-ab1d-e5b33e9ee608 + - d65c5597-6479-43ae-8260-baba89b65242 status: 200 OK code: 200 - duration: 76.255736ms + duration: 68.878439ms - id: 61 request: proto: HTTP/1.1 @@ -3008,7 +3012,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -3016,20 +3020,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 412 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2025-09-20T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-21T14:20:10.574028Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:46 GMT + - Mon, 21 Oct 2024 14:20:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3037,10 +3041,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94a9d839-4b94-4b79-aaa8-39f2f8c4fe70 + - 0bc4f3fc-45fb-4661-8700-72e30954a0c4 status: 200 OK code: 200 - duration: 72.674068ms + duration: 28.384996ms - id: 62 request: proto: HTTP/1.1 @@ -3057,28 +3061,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 415 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:19:58.101044Z","expires_at":"2025-09-20T23:59:59Z","id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","instance_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-21T14:20:12.057692Z","volume_type":{"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "415" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:51 GMT + - Mon, 21 Oct 2024 14:20:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3086,10 +3090,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e19df12-2e5a-492e-b009-8500d5216d84 + - 5ec6fc82-6c11-48ae-afb7-b536d071d5cb status: 200 OK code: 200 - duration: 85.968887ms + duration: 115.844799ms - id: 63 request: proto: HTTP/1.1 @@ -3106,7 +3110,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3114,20 +3118,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 528 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:26:56 GMT + - Mon, 21 Oct 2024 14:20:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3135,10 +3139,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99a491a8-9490-4703-96b2-fff7afbb9bea + - 476b32a4-25dc-49ca-a242-7209cd8c24d2 status: 200 OK code: 200 - duration: 72.546515ms + duration: 27.507052ms - id: 64 request: proto: HTTP/1.1 @@ -3155,28 +3159,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:01 GMT + - Mon, 21 Oct 2024 14:20:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3184,10 +3188,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a2bf9ea-dd3c-4dd5-955d-32e7d3a802e5 + - f9a2f053-4fa0-4942-ad8e-7f27e36d968e status: 200 OK code: 200 - duration: 66.114455ms + duration: 143.878745ms - id: 65 request: proto: HTTP/1.1 @@ -3204,7 +3208,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3212,20 +3216,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:06 GMT + - Mon, 21 Oct 2024 14:20:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3233,10 +3237,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19dc26f6-6d2b-413c-be56-c17dae684232 + - a8db88f0-cd7f-43f0-9ab4-8cbaf820ff22 status: 200 OK code: 200 - duration: 64.066804ms + duration: 59.95708ms - id: 66 request: proto: HTTP/1.1 @@ -3253,7 +3257,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3261,20 +3265,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:11 GMT + - Mon, 21 Oct 2024 14:20:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3282,10 +3286,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3291528-20c1-43e0-9150-6f55476a52fb + - 34ac540b-187e-4e3c-8cf7-52b86bf50687 status: 200 OK code: 200 - duration: 61.387446ms + duration: 76.216759ms - id: 67 request: proto: HTTP/1.1 @@ -3302,7 +3306,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3310,20 +3314,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:17 GMT + - Mon, 21 Oct 2024 14:20:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3331,10 +3335,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ea7cef2-7f99-4468-a89a-2635e9e07219 + - e11264c6-6691-442c-b8f1-bac3faba5419 status: 200 OK code: 200 - duration: 93.67713ms + duration: 67.495324ms - id: 68 request: proto: HTTP/1.1 @@ -3351,7 +3355,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3359,20 +3363,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:22 GMT + - Mon, 21 Oct 2024 14:20:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3380,10 +3384,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27bb864f-eb5d-4c8f-a0ac-d49dfcc70670 + - dc425077-61a0-444b-95de-5568d430f8df status: 200 OK code: 200 - duration: 50.177345ms + duration: 68.723539ms - id: 69 request: proto: HTTP/1.1 @@ -3400,7 +3404,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3408,20 +3412,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:27 GMT + - Mon, 21 Oct 2024 14:20:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3429,10 +3433,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efe48b5b-c1b9-4264-95bc-5d54ecd2a5b2 + - b79efee5-6b18-4276-a9e7-61489a6ed3ee status: 200 OK code: 200 - duration: 59.081131ms + duration: 70.446151ms - id: 70 request: proto: HTTP/1.1 @@ -3449,7 +3453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3457,20 +3461,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:32 GMT + - Mon, 21 Oct 2024 14:20:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3478,10 +3482,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07987a5b-46eb-4e23-9f12-a40ad058616b + - 5b309b71-01d3-44c3-a882-f3efa570c116 status: 200 OK code: 200 - duration: 61.610538ms + duration: 68.355158ms - id: 71 request: proto: HTTP/1.1 @@ -3498,7 +3502,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3506,20 +3510,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:37 GMT + - Mon, 21 Oct 2024 14:20:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3527,10 +3531,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2e8206b-04ad-4b12-8bf4-d7cd7d84633b + - 6b226881-42ce-467d-850e-75db4fab0b69 status: 200 OK code: 200 - duration: 63.578812ms + duration: 73.948223ms - id: 72 request: proto: HTTP/1.1 @@ -3547,7 +3551,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3555,20 +3559,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:42 GMT + - Mon, 21 Oct 2024 14:20:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3576,10 +3580,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d367e4a-abfa-4f49-8a71-1e9fbb92a0ed + - d7524fad-68f7-47a1-963f-7ca4f7333aac status: 200 OK code: 200 - duration: 192.730654ms + duration: 72.019707ms - id: 73 request: proto: HTTP/1.1 @@ -3596,7 +3600,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3604,20 +3608,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:47 GMT + - Mon, 21 Oct 2024 14:20:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3625,10 +3629,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1989dd96-f0ac-4c17-ba11-438346bb4831 + - c9af9fb3-4457-4b35-addd-81b2ebfb1890 status: 200 OK code: 200 - duration: 82.667958ms + duration: 54.520938ms - id: 74 request: proto: HTTP/1.1 @@ -3645,7 +3649,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3653,20 +3657,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:52 GMT + - Mon, 21 Oct 2024 14:20:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3674,10 +3678,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 792968e7-1cff-43b4-ab11-b9886fa8b346 + - fc50bcc1-3fd7-4da4-a1de-c3d6427a5434 status: 200 OK code: 200 - duration: 72.516438ms + duration: 74.729931ms - id: 75 request: proto: HTTP/1.1 @@ -3694,7 +3698,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3702,20 +3706,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:27:57 GMT + - Mon, 21 Oct 2024 14:21:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3723,10 +3727,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2432552-c120-4e16-9d78-8ec4cbb6d250 + - b67569a6-7228-4096-b76b-ff08d0251e0b status: 200 OK code: 200 - duration: 86.88965ms + duration: 70.031147ms - id: 76 request: proto: HTTP/1.1 @@ -3743,7 +3747,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3751,20 +3755,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:28:02 GMT + - Mon, 21 Oct 2024 14:21:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3772,10 +3776,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b439385-6537-4581-9791-2903cd928861 + - 2ef4c0b2-a4f0-42a6-8a4c-5d4ba9284f30 status: 200 OK code: 200 - duration: 83.369866ms + duration: 71.178748ms - id: 77 request: proto: HTTP/1.1 @@ -3792,7 +3796,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3800,20 +3804,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:28:07 GMT + - Mon, 21 Oct 2024 14:21:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3821,10 +3825,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b09655e-1b87-4c6f-a85a-9cead4d20d3e + - ac59ffa7-b9de-46f6-8cda-15fc3b78db7a status: 200 OK code: 200 - duration: 68.713927ms + duration: 80.148113ms - id: 78 request: proto: HTTP/1.1 @@ -3841,7 +3845,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3849,20 +3853,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:28:13 GMT + - Mon, 21 Oct 2024 14:21:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3870,10 +3874,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cba5b5b-d4e3-40f2-b643-fa5bf693947c + - 8937a020-042f-4e62-b426-f36d48e6551d status: 200 OK code: 200 - duration: 429.602429ms + duration: 71.661353ms - id: 79 request: proto: HTTP/1.1 @@ -3890,7 +3894,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3898,20 +3902,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 531 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2024-10-21T14:00:16.939353Z","endpoints":[{"dns_records":["12efefde-872e-4425-9e0c-27a3f84f8e87.mgdb.fr-par.scw.cloud"],"id":"e4c282d2-1cde-4d9b-aab9-75f9f0e95a35","ips":[],"port":27017,"public":{}}],"id":"12efefde-872e-4425-9e0c-27a3f84f8e87","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "535" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:28:18 GMT + - Mon, 21 Oct 2024 14:21:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3919,10 +3923,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 090bc1fb-ef29-4f18-a97b-f22f445310b1 + - 8d80ef7d-b926-4888-8b9f-e83cbfe4649b status: 200 OK code: 200 - duration: 77.133242ms + duration: 71.896411ms - id: 80 request: proto: HTTP/1.1 @@ -3939,7 +3943,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/12efefde-872e-4425-9e0c-27a3f84f8e87 method: GET response: proto: HTTP/2.0 @@ -3947,20 +3951,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 129 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"12efefde-872e-4425-9e0c-27a3f84f8e87","type":"not_found"}' headers: Content-Length: - - "535" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:28:23 GMT + - Mon, 21 Oct 2024 14:21:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3968,10 +3972,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3a17aa4-38d3-42ae-ac62-b88884446c1d - status: 200 OK - code: 200 - duration: 73.011351ms + - 17362956-7c48-450d-bb35-f6ed85908718 + status: 404 Not Found + code: 404 + duration: 28.566701ms - id: 81 request: proto: HTTP/1.1 @@ -3988,56 +3992,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:28:28 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e15f4de-36d9-4fb7-b62c-27bfd1dddb52 - status: 200 OK - code: 200 - duration: 56.78893ms - - 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.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 + url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/f9b018d2-3d60-44a3-a3b3-5409064aa7cf method: GET response: proto: HTTP/2.0 @@ -4045,20 +4000,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 129 uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f9b018d2-3d60-44a3-a3b3-5409064aa7cf","type":"not_found"}' headers: Content-Length: - - "535" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 17 Oct 2024 08:28:33 GMT + - Mon, 21 Oct 2024 14:21:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4066,4078 +4021,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09da24e9-7b04-440b-b6cd-15b4ac39d0a8 - status: 200 OK - code: 200 - duration: 290.89235ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:28:38 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c7fac01-17da-4392-93b6-172fafe7e07f - status: 200 OK - code: 200 - duration: 33.941659ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:28:43 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a0977dc8-7e55-482a-bdcb-7bee28a33106 - status: 200 OK - code: 200 - duration: 32.479949ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:28:48 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f094197c-05c4-415e-8ca9-d9ca2410b43e - status: 200 OK - code: 200 - duration: 60.352375ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:28:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f57ec8d5-2866-428e-8a72-85b093c59c3a - status: 200 OK - code: 200 - duration: 62.856889ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:28:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ada3f211-0986-4e62-aef5-020851987a1c - status: 200 OK - code: 200 - duration: 82.148373ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:04 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a4a43283-59b2-49b4-b7d1-9e31a865b26f - status: 200 OK - code: 200 - duration: 63.368998ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:09 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 662e75eb-1d1c-449b-81a3-deffab266a15 - status: 200 OK - code: 200 - duration: 78.404031ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 86cb415d-18fb-4420-8334-9e7589e7aa8f - status: 200 OK - code: 200 - duration: 82.180051ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1a0ae55f-4ac7-47c9-bfac-e0d631200176 - status: 200 OK - code: 200 - duration: 79.749781ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b5609d3-adf0-4bf2-987b-dd19e9a8a35d - status: 200 OK - code: 200 - duration: 66.462896ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:29 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a196bf7-59a3-4f0c-a743-7b952978d58b - status: 200 OK - code: 200 - duration: 70.147887ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:34 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eadb8110-8da2-4ab5-b195-a311401cb978 - status: 200 OK - code: 200 - duration: 72.565249ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:39 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 679c3975-525e-43c6-bff7-7680603dcb1f - status: 200 OK - code: 200 - duration: 62.315982ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:44 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e60b8ce-f21f-4ffd-ad64-285df852c38a - status: 200 OK - code: 200 - duration: 106.940143ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9fd6819c-3e3f-4fd1-ac10-105ae81b7b50 - status: 200 OK - code: 200 - duration: 73.525686ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:29:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e32035c5-b082-48eb-bcf0-2b5b0e1fda03 - status: 200 OK - code: 200 - duration: 123.724251ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:00 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5cc9b552-8831-4041-ad7f-594289e8e485 - status: 200 OK - code: 200 - duration: 83.267942ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:05 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 27e813f2-2eeb-4ce1-8e65-3535db4b5a0a - status: 200 OK - code: 200 - duration: 70.514889ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 06ef1873-b5ae-4e97-b5fd-9cf8eda4354a - status: 200 OK - code: 200 - duration: 84.291471ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:15 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ffd635f5-7a20-4f1d-bf5f-2ee9a80c3f0f - status: 200 OK - code: 200 - duration: 71.911643ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7676cfdd-cfaf-4978-b278-0776d382a37f - status: 200 OK - code: 200 - duration: 74.923972ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:25 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c89fa02-95b3-496f-9a2e-50d90315c6d4 - status: 200 OK - code: 200 - duration: 85.322682ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:30 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f85dd1c2-1c37-487b-a8c7-6bf029e4cd24 - status: 200 OK - code: 200 - duration: 80.190736ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:35 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 67a10fbb-547c-41d2-936c-f247095713f8 - status: 200 OK - code: 200 - duration: 69.648971ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 563f8278-b8f0-4bbd-9df1-c8c55a76dbe2 - status: 200 OK - code: 200 - duration: 85.230654ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c487978-0b2c-4f2c-8081-edc9bc11267b - status: 200 OK - code: 200 - duration: 71.278822ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 35c40cf3-a5d6-4453-9507-acd121730db1 - status: 200 OK - code: 200 - duration: 71.374877ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:30:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8f50e11b-0ff6-46d6-b73b-93829414a6c3 - status: 200 OK - code: 200 - duration: 73.006562ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eb1054c3-788f-4f0b-bafd-54e03e093b61 - status: 200 OK - code: 200 - duration: 78.362376ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd0c03cd-e426-429b-8f9f-8b3c67bdeeeb - status: 200 OK - code: 200 - duration: 68.897627ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:11 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b086ee6-89f7-4401-8600-d41f613652dd - status: 200 OK - code: 200 - duration: 84.385127ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5cab6b8c-d82d-4769-8f78-cbd8bdaa7a3e - status: 200 OK - code: 200 - duration: 66.922002ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d2f0aaf-99f6-4909-a3e8-00d94df5ee15 - status: 200 OK - code: 200 - duration: 73.798672ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:26 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 112b032c-1aad-468f-a652-a407e89c2101 - status: 200 OK - code: 200 - duration: 65.835306ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ed71f742-f7fe-4258-9ffd-1e4369c0b3e3 - status: 200 OK - code: 200 - duration: 68.483694ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3901aa94-75c8-44f9-842b-5cac3d815906 - status: 200 OK - code: 200 - duration: 87.520311ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - acebbc03-85e4-4c1d-9d84-d55c00c4f3be - status: 200 OK - code: 200 - duration: 84.978482ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14461adf-466b-4520-80cd-73bee5a5e2c4 - status: 200 OK - code: 200 - duration: 91.765112ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b253c41-37d2-4a80-b19d-0d8f4280812f - status: 200 OK - code: 200 - duration: 67.54121ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:31:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9bd8156-f801-4bfe-9f88-c3810d0c8b00 - status: 200 OK - code: 200 - duration: 77.166039ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 07aafa6a-d6b0-4d5e-8c5f-f3cae915c222 - status: 200 OK - code: 200 - duration: 76.716421ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5a00150d-fd3a-4c66-a3d7-6d5a3c3fdf83 - status: 200 OK - code: 200 - duration: 69.454279ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 764e4c35-dbef-4322-ab29-a137e8b561cf - status: 200 OK - code: 200 - duration: 62.89921ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a107ab3a-5fe7-4d82-bed9-62486f1bee90 - status: 200 OK - code: 200 - duration: 80.704223ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0562b12a-f43c-48c7-a554-90a2a7425259 - status: 200 OK - code: 200 - duration: 76.641709ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:27 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ac28ce88-9260-4fb4-8755-4b43f65b99aa - status: 200 OK - code: 200 - duration: 76.446749ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:32 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a8e9d76-692e-4964-a612-89a9050f89a6 - status: 200 OK - code: 200 - duration: 71.930219ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d511f7f4-7c80-4171-b0ca-3b5ef0cf7a3d - status: 200 OK - code: 200 - duration: 76.516022ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:42 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 84991055-355b-4a59-a279-f9ce845d6e5a - status: 200 OK - code: 200 - duration: 61.152113ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:47 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e5d490ab-fa62-479d-8a04-67c237fbefb6 - status: 200 OK - code: 200 - duration: 68.233224ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 237368fb-80b9-472b-9fe6-57314a641f70 - status: 200 OK - code: 200 - duration: 71.296612ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:32:57 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d5d81908-0d47-4c93-9df7-bb9f33f0df1d - status: 200 OK - code: 200 - duration: 64.612429ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:33:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8f34f5b2-b0ac-4dc4-9751-324ed730a409 - status: 200 OK - code: 200 - duration: 64.112346ms - - id: 136 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:33:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b90c8df9-8ebe-425b-82ac-5f6373501fb0 - status: 200 OK - code: 200 - duration: 58.125444ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:33:12 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5991bc4-25f4-4f4a-9c34-a058056b7660 - status: 200 OK - code: 200 - duration: 59.801994ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"provisioning","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:33:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f653cb3-86b2-4729-85f5-abfd831e4a85 - status: 200 OK - code: 200 - duration: 79.5475ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 47f1a4dc-3b01-46ee-8abe-b449865c2ac3 - status: 200 OK - code: 200 - duration: 156.487096ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 724b87a3-b766-4fce-a4f7-0513a62e05e7 - status: 200 OK - code: 200 - duration: 84.489391ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 60 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-snapshot","expires_at":"2024-12-31T23:59:59Z"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 378 - uncompressed: false - body: '{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}' - headers: - Content-Length: - - "378" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 40701950-9ce3-4488-8c22-a3f173008fca - status: 200 OK - code: 200 - duration: 243.48569ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 411 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "411" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a6912962-6cfb-43ef-8a18-e007c13a5d1b - status: 200 OK - code: 200 - duration: 88.623052ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 411 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":0,"status":"creating","updated_at":null,"volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "411" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 94cdf348-65bb-444c-9d92-a0b1b049ec6c - status: 200 OK - code: 200 - duration: 82.760092ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:17.565517Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ec3cb77-f305-44ac-9393-970115ee9b28 - status: 200 OK - code: 200 - duration: 78.503497ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:17.565517Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f373d8ba-ae62-4c43-9d9e-295d393d2c86 - status: 200 OK - code: 200 - duration: 47.929132ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f64fc6b4-89d8-4548-8133-634e96b7d082 - status: 200 OK - code: 200 - duration: 82.790564ms - - id: 147 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:17.565517Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ad98638e-c082-40bf-a7dc-0c4f933bb067 - status: 200 OK - code: 200 - duration: 77.76585ms - - id: 148 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ea4bc04-032d-4085-a9e0-4d0f809a5cd3 - status: 200 OK - code: 200 - duration: 70.255474ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 442 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2024-12-31T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"test-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:17.565517Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "442" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 23e2ae4b-439a-44d5-a8b5-295049e32580 - status: 200 OK - code: 200 - duration: 71.37765ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 63 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"updated-snapshot","expires_at":"2025-09-20T23:59:59Z"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/1a4f9b66-549c-41b1-88da-ad197e0a6cfa - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 412 - uncompressed: false - body: '{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:29.871856Z","volume_type":{"type":"sbs_5k"}}' - headers: - Content-Length: - - "412" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - edb848a1-f3f5-443d-b7da-e232fb333d46 - status: 200 OK - code: 200 - duration: 70.489751ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 445 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:29.871856Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c396d3d-e617-4c3a-87f8-297a7cb36c57 - status: 200 OK - code: 200 - duration: 28.914166ms - - id: 152 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 445 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:29.871856Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d79c821-502c-4fed-8645-acde415283d6 - status: 200 OK - code: 200 - duration: 64.786396ms - - id: 153 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 95210543-af8d-4e3c-84f5-1009693a050a - status: 200 OK - code: 200 - duration: 63.812078ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 445 - uncompressed: false - body: '{"snapshots":[{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"ready","updated_at":"2024-10-17T08:48:29.871856Z","volume_type":{"type":"sbs_5k"}}],"total_count":1}' - headers: - Content-Length: - - "445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e079841-76a4-4d5c-bd30-b11cc1fe1d86 - status: 200 OK - code: 200 - duration: 71.771881ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots/1a4f9b66-549c-41b1-88da-ad197e0a6cfa - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 415 - uncompressed: false - body: '{"created_at":"2024-10-17T08:48:16.508458Z","expires_at":"2025-09-20T23:59:59Z","id":"1a4f9b66-549c-41b1-88da-ad197e0a6cfa","instance_id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","instance_name":"test-mongodb-instance","name":"updated-snapshot","node_type":"mgdb-play2-nano","region":"fr-par","size":5000000000,"status":"deleting","updated_at":"2024-10-17T08:48:31.495368Z","volume_type":{"type":"sbs_5k"}}' - headers: - Content-Length: - - "415" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 39d365ed-1cd2-4e47-85bb-a597c60e43b2 - status: 200 OK - code: 200 - duration: 132.330658ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"ready","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 20222924-cf6c-47ce-b5a0-1d603afc48d4 - status: 200 OK - code: 200 - duration: 63.663316ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 79c90f61-368f-44bf-a132-c4677648bc85 - status: 200 OK - code: 200 - duration: 174.83477ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 588fdf8d-24a9-4b45-b848-342b18c78a61 - status: 200 OK - code: 200 - duration: 58.470988ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c82853e-db3b-4bf6-91e3-f89946be745d - status: 200 OK - code: 200 - duration: 117.141198ms - - id: 160 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a17f6bd9-89e1-4eed-add8-40301158804a - status: 200 OK - code: 200 - duration: 153.142818ms - - id: 161 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3f3ddf8a-ac96-4cca-a9cd-87aba9b34392 - status: 200 OK - code: 200 - duration: 66.078449ms - - id: 162 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e7bb978c-336c-44db-8b07-438059a1d113 - status: 200 OK - code: 200 - duration: 65.615197ms - - id: 163 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"created_at":"2024-10-17T08:21:41.238774Z","endpoints":[{"dns_records":["e9b08b7f-c0bc-4575-bf95-c48526f42e18.mgdb.fr-par.scw.cloud"],"id":"ea92ba62-c993-4540-888f-e24ccfb1dba4","ips":[],"port":27017,"public":{}}],"id":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","name":"test-mongodb-instance","node_number":1,"node_type":"mgdb-play2-nano","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","settings":[],"status":"deleting","tags":[],"version":"7.0.12","volume":{"size":5000000000,"type":"sbs_5k"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:48:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 159ad6a1-bd1a-4089-b319-4e25c0d7e9f3 - status: 200 OK - code: 200 - duration: 68.258025ms - - id: 164 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/instances/e9b08b7f-c0bc-4575-bf95-c48526f42e18 - 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":"e9b08b7f-c0bc-4575-bf95-c48526f42e18","type":"not_found"}' - headers: - Content-Length: - - "129" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:49:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3941285e-1730-43e1-863f-3f561f3d6858 + - 7b60ffea-3a01-4efe-9497-03cdfdd32839 status: 404 Not Found code: 404 - duration: 27.153867ms - - id: 165 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/mongodb/v1alpha1/regions/fr-par/snapshots?instance_id=e9b08b7f-c0bc-4575-bf95-c48526f42e18&order_by=created_at_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33 - uncompressed: false - body: '{"snapshots":[],"total_count":0}' - headers: - Content-Length: - - "33" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 17 Oct 2024 08:49:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e1499f0-b4e1-4513-91ac-aa7a10598a94 - status: 200 OK - code: 200 - duration: 76.021846ms + duration: 29.987889ms From fe473735f14d8eba28807e6eaa26a4f2e1a7173b Mon Sep 17 00:00:00 2001 From: jremy Date: Wed, 23 Oct 2024 15:41:18 +0200 Subject: [PATCH 22/26] feat(mongodb): refacto update snapshot and instance --- internal/services/mongodb/instance.go | 20 +++++++++++++++----- internal/services/mongodb/snapshot.go | 26 +++++++++++++------------- 2 files changed, 28 insertions(+), 18 deletions(-) diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index f594281973..bd116b4a53 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -51,9 +51,10 @@ func ResourceInstance() *schema.Resource { }, }, "node_number": { - Type: schema.TypeInt, - Required: true, - Description: "Number of nodes in the instance", + Type: schema.TypeInt, + Required: true, + ValidateFunc: validation.IntAtLeast(1), + Description: "Number of nodes in the instance", }, "node_type": { Type: schema.TypeString, @@ -324,6 +325,11 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter } } + //////////////////// + // Update instance + //////////////////// + + shouldUpdateInstance := false req := &mongodb.UpdateInstanceRequest{ Region: region, InstanceID: ID, @@ -331,15 +337,17 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter if d.HasChange("name") { req.Name = types.ExpandStringPtr(d.Get("name")) + shouldUpdateInstance = true } if d.HasChange("tags") { if tags := types.ExpandUpdatedStringsPtr(d.Get("tags")); tags != nil { req.Tags = tags + shouldUpdateInstance = true } } - if req.Name != nil || req.Tags != nil { + if shouldUpdateInstance { _, err = mongodbAPI.UpdateInstance(req, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) @@ -350,6 +358,7 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter // Update user //////////////////// + shouldUpdateUser := false updateUserRequest := mongodb.UpdateUserRequest{ Name: d.Get("user_name").(string), Region: region, @@ -359,9 +368,10 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter if d.HasChange("password") { password := d.Get("password").(string) updateUserRequest.Password = &password + shouldUpdateUser = true } - if updateUserRequest.Password != nil { + if shouldUpdateUser { _, err = mongodbAPI.UpdateUser(&updateUserRequest, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) diff --git a/internal/services/mongodb/snapshot.go b/internal/services/mongodb/snapshot.go index 6592902474..e429f0a6de 100644 --- a/internal/services/mongodb/snapshot.go +++ b/internal/services/mongodb/snapshot.go @@ -32,28 +32,22 @@ func ResourceSnapshot() *schema.Resource { }, SchemaVersion: 0, Schema: map[string]*schema.Schema{ - "id": { + "name": { Type: schema.TypeString, + Optional: true, Computed: true, - Description: "Unique identifier of the snapshot", + Description: "Name of the snapshot", }, "instance_id": { Type: schema.TypeString, Required: true, Description: "The ID of the instance from which the snapshot was created", }, - "name": { - Type: schema.TypeString, - Optional: true, - Computed: true, - Description: "Name of the snapshot", - }, "instance_name": { Type: schema.TypeString, Computed: true, Description: "Name of the instance from which the snapshot was created", }, - "size": { Type: schema.TypeInt, Computed: true, @@ -134,7 +128,6 @@ func ResourceSnapshotRead(ctx context.Context, d *schema.ResourceData, m interfa if err != nil { return diag.FromErr(err) } - _ = d.Set("id", snapshot.ID) _ = d.Set("instance_id", zonal.NewIDString(zone, snapshot.InstanceID)) _ = d.Set("name", snapshot.Name) _ = d.Set("instance_name", snapshot.InstanceName) @@ -164,19 +157,26 @@ func ResourceSnapshotUpdate(ctx context.Context, d *schema.ResourceData, m inter Region: region, } + hasChanged := false + if d.HasChange("name") { newName := types.ExpandOrGenerateString(d.Get("name"), "snapshot") updateReq.Name = &newName + hasChanged = true } if d.HasChange("expires_at") { updateReq.ExpiresAt = types.ExpandTimePtr(d.Get("expires_at")) + hasChanged = true } - _, err = mongodbAPI.UpdateSnapshot(updateReq) - if err != nil { - return diag.FromErr(err) + if hasChanged { + _, err = mongodbAPI.UpdateSnapshot(updateReq) + if err != nil { + return diag.FromErr(err) + } } + instanceID := locality.ExpandID(d.Get("instance_id").(string)) _, err = waitForSnapshot(ctx, mongodbAPI, region, instanceID, snapshotID, d.Timeout(schema.TimeoutUpdate)) From f6b4f77dfeea191a03412565c7f94051bec3a730 Mon Sep 17 00:00:00 2001 From: jremy Date: Wed, 23 Oct 2024 16:58:04 +0200 Subject: [PATCH 23/26] =?UTF-8?q?feat(mongodb):=20replace=20TM=20by=20=20?= =?UTF-8?q?=C2=AE=20in=20docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/data-sources/mongodb_instance.md | 34 +++++++++++++-------------- docs/resources/mongodb_instance.md | 22 ++++++++--------- docs/resources/mongodb_snapshot.md | 28 +++++++++++----------- 3 files changed, 42 insertions(+), 42 deletions(-) diff --git a/docs/data-sources/mongodb_instance.md b/docs/data-sources/mongodb_instance.md index 28b9966c5a..f8302050d8 100644 --- a/docs/data-sources/mongodb_instance.md +++ b/docs/data-sources/mongodb_instance.md @@ -1,13 +1,13 @@ --- -subcategory: "MongoDB™" +subcategory: "MongoDB®" page_title: "Scaleway: scaleway_mongodb_instance" --- # scaleway_mongodb_instance -Gets information about a MongoDB™ Instance. +Gets information about a MongoDB® Instance. -For further information refer to the Managed Databases for MongoDB™ [API documentation](https://developers.scaleway.com/en/products/mongodb/api/) +For further information refer to the Managed Databases for MongoDB® [API documentation](https://developers.scaleway.com/en/products/mongodb/api/) ## Example Usage @@ -31,37 +31,37 @@ output "mongodb_version" { ## Argument Reference -- `name` - (Optional) The name of the MongoDB™ instance. +- `name` - (Optional) The name of the MongoDB® instance. -- `instance_id` - (Optional) The MongoDB™ instance ID. +- `instance_id` - (Optional) The MongoDB® instance ID. -> **Note** You must specify at least one: `name` or `instance_id`. -- `project_id` - (Optional) The ID of the project the MongoDB™ instance is in. Can be used to filter instances when using `name`. +- `project_id` - (Optional) The ID of the project the MongoDB® instance is in. Can be used to filter instances when using `name`. -- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#zones) in which the MongoDB™ Instance exists. +- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#zones) in which the MongoDB® Instance exists. -- `organization_id` - (Defaults to [provider](../index.md#organization_id) `organization_id`) The ID of the organization the MongoDB™ instance is in. +- `organization_id` - (Defaults to [provider](../index.md#organization_id) `organization_id`) The ID of the organization the MongoDB® instance is in. ## Attributes Reference In addition to all above arguments, the following attributes are exported: -- `id` - The ID of the MongoDB™ Instance. -- `name` - The name of the MongoDB™ instance. -- `version` - The version of MongoDB™ running on the instance. -- `node_type` - The type of MongoDB™ node. -- `node_number` - The number of nodes in the MongoDB™ cluster. -- `created_at` - The date and time the MongoDB™ instance was created. +- `id` - The ID of the MongoDB® Instance. +- `name` - The name of the MongoDB® instance. +- `version` - The version of MongoDB® running on the instance. +- `node_type` - The type of MongoDB® node. +- `node_number` - The number of nodes in the MongoDB® cluster. +- `created_at` - The date and time the MongoDB® instance was created. - `project_id` - The ID of the project the instance belongs to. -- `tags` - A list of tags attached to the MongoDB™ instance. -- `volume_type` - The type of volume attached to the MongoDB™ instance. +- `tags` - A list of tags attached to the MongoDB® instance. +- `volume_type` - The type of volume attached to the MongoDB® instance. - `volume_size_in_gb` - The size of the attached volume, in GB. - `public_network` - The details of the public network configuration, if applicable. ## Import -MongoDB™ instance can be imported using the `id`, e.g. +MongoDB® instance can be imported using the `id`, e.g. ```bash terraform import scaleway_mongodb_instance.main fr-par-1/11111111-1111-1111-1111-111111111111 diff --git a/docs/resources/mongodb_instance.md b/docs/resources/mongodb_instance.md index 8262855dea..47c814ad52 100644 --- a/docs/resources/mongodb_instance.md +++ b/docs/resources/mongodb_instance.md @@ -1,11 +1,11 @@ --- -subcategory: "MongoDB™" +subcategory: "MongoDB®" page_title: "Scaleway: scaleway_mongodb_instance" --- # Resource: scaleway_mongodb_instance -Creates and manages Scaleway MongoDB™ instance. +Creates and manages Scaleway MongoDB® instance. For more information refer to [the API documentation](https://www.scaleway.com/en/docs/managed-databases/mongodb/). ## Example Usage @@ -42,28 +42,28 @@ resource "scaleway_mongodb_instance" "restored_instance" { The following arguments are supported: -- `version` - (Optional) MongoDB™ version of the instance. -- `node_type` - (Required) The type of MongoDB™ intance to create. +- `version` - (Optional) MongoDB® version of the instance. +- `node_type` - (Required) The type of MongoDB® intance to create. - `user_name` - (Optional) Name of the user created when the intance is created. - `password` - (Optional) Password of the user. -- `name` - (Optional) Name of the MongoDB™ instance. -- `tags` - (Optional) List of tags attached to the MongoDB™ instance. +- `name` - (Optional) Name of the MongoDB® instance. +- `tags` - (Optional) List of tags attached to the MongoDB® instance. - `volume_type` - (Optional) Volume type of the instance. - `volume_size_in_gb` - (Optional) Volume size in GB. -- `snapshot_id` - (Optional) Snapshot ID to restore the MongoDB™ instance from. +- `snapshot_id` - (Optional) Snapshot ID to restore the MongoDB® instance from. - `public_network` - (Optional) Public network specs details. ## Attributes Reference In addition to all arguments above, the following attributes are exported: -- `id` - The ID of the MongoDB™ instance. -- `created_at` - The date and time of the creation of the MongoDB™ instance. -- `updated_at` - The date and time of the last update of the MongoDB™ instance. +- `id` - The ID of the MongoDB® instance. +- `created_at` - The date and time of the creation of the MongoDB® instance. +- `updated_at` - The date and time of the last update of the MongoDB® instance. ## Import -MongoDB™ instance can be imported using the `id`, e.g. +MongoDB® instance can be imported using the `id`, e.g. ```bash terraform import scaleway_mongodb_instance.main fr-par-1/11111111-1111-1111-1111-111111111111 diff --git a/docs/resources/mongodb_snapshot.md b/docs/resources/mongodb_snapshot.md index 5657bb6818..b1ed67394a 100644 --- a/docs/resources/mongodb_snapshot.md +++ b/docs/resources/mongodb_snapshot.md @@ -1,11 +1,11 @@ --- -subcategory: "MongoDB™" +subcategory: "MongoDB®" page_title: "Scaleway: scaleway_mongodb_snapshot" --- # Resource: scaleway_mongodb_snapshot -Creates and manages Scaleway MongoDB™ snapshots. +Creates and manages Scaleway MongoDB® snapshots. For more information refer to [the API documentation](https://www.scaleway.com/en/docs/managed-databases/mongodb/). ## Example Usage @@ -25,37 +25,37 @@ resource "scaleway_mongodb_snapshot" "main" { The following arguments are supported: -- `instance_id` - (Required) The ID of the MongoDB™ instance from which the snapshot was created. +- `instance_id` - (Required) The ID of the MongoDB® instance from which the snapshot was created. -- `name` - (Optional) The name of the MongoDB™ snapshot. +- `name` - (Optional) The name of the MongoDB® snapshot. -- `expires_at` - (Required) The expiration date of the MongoDB™ snapshot in ISO 8601 format (e.g. `2024-12-31T23:59:59Z`). +- `expires_at` - (Required) The expiration date of the MongoDB® snapshot in ISO 8601 format (e.g. `2024-12-31T23:59:59Z`). ~> **Important:** Once set, `expires_at` cannot be removed. -- `region` - (Defaults to [provider](../index.md) `region`) The [region](../guides/regions_and_zones.md#regions) in which the MongoDB™ snapshot should be created. +- `region` - (Defaults to [provider](../index.md) `region`) The [region](../guides/regions_and_zones.md#regions) in which the MongoDB® snapshot should be created. ## Attributes Reference In addition to all arguments above, the following attributes are exported: -- `id` - The unique identifier of the MongoDB™ snapshot. +- `id` - The unique identifier of the MongoDB® snapshot. -- `instance_name` - The name of the MongoDB™ instance from which the snapshot was created. +- `instance_name` - The name of the MongoDB® instance from which the snapshot was created. -- `size` - The size of the MongoDB™ snapshot in bytes. +- `size` - The size of the MongoDB® snapshot in bytes. -- `node_type` - The type of node associated with the MongoDB™ snapshot. +- `node_type` - The type of node associated with the MongoDB® snapshot. -- `volume_type` - The type of volume used for the MongoDB™ snapshot. +- `volume_type` - The type of volume used for the MongoDB® snapshot. -- `created_at` - The date and time when the MongoDB™ snapshot was created. +- `created_at` - The date and time when the MongoDB® snapshot was created. -- `updated_at` - The date and time of the last update of the MongoDB™ snapshot. +- `updated_at` - The date and time of the last update of the MongoDB® snapshot. ## Import -MongoDB™ snapshots can be imported using the `{region}/{id}`, e.g. +MongoDB® snapshots can be imported using the `{region}/{id}`, e.g. ```bash terraform import scaleway_mongodb_snapshot.main fr-par-1/11111111-1111-1111-1111-111111111111 From 8891670104374d0b88552b05d94dbd6ed69681a1 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 24 Oct 2024 10:28:59 +0200 Subject: [PATCH 24/26] feat(mongodb): remove id from snapshot doc --- docs/resources/mongodb_snapshot.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/resources/mongodb_snapshot.md b/docs/resources/mongodb_snapshot.md index b1ed67394a..c405b6338f 100644 --- a/docs/resources/mongodb_snapshot.md +++ b/docs/resources/mongodb_snapshot.md @@ -39,8 +39,6 @@ The following arguments are supported: In addition to all arguments above, the following attributes are exported: -- `id` - The unique identifier of the MongoDB® snapshot. - - `instance_name` - The name of the MongoDB® instance from which the snapshot was created. - `size` - The size of the MongoDB® snapshot in bytes. From 534f2de39059679166890e47cb2839807cdea63b Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 24 Oct 2024 11:41:17 +0200 Subject: [PATCH 25/26] feat(mongodb): add warning when user_name change --- internal/services/mongodb/instance.go | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/internal/services/mongodb/instance.go b/internal/services/mongodb/instance.go index bd116b4a53..093f6348d7 100644 --- a/internal/services/mongodb/instance.go +++ b/internal/services/mongodb/instance.go @@ -65,7 +65,6 @@ func ResourceInstance() *schema.Resource { "user_name": { Type: schema.TypeString, Optional: true, - ForceNew: true, Description: "Name of the user created when the cluster is created", ConflictsWith: []string{ "snapshot_id", @@ -365,6 +364,18 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter InstanceID: ID, } + var diags diag.Diagnostics + + if d.HasChange("user_name") { + diags = append(diags, diag.Diagnostic{ + Severity: diag.Warning, + Summary: "Change in 'user_name' detected", + Detail: "[WARN] The 'user_name' field was changed, but this functionality is not supported yet. " + + "As a result, no changes were applied to the instance. " + + "Please be aware that changing the 'user_name' will not modify the instance at this time.", + }) + } + if d.HasChange("password") { password := d.Get("password").(string) updateUserRequest.Password = &password @@ -382,8 +393,7 @@ func ResourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter if err != nil { return diag.FromErr(err) } - - return ResourceInstanceRead(ctx, d, m) + return append(diags, ResourceInstanceRead(ctx, d, m)...) } func ResourceInstanceDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { From 28f270b070bd442faac2cd7291e6970cf7d1e433 Mon Sep 17 00:00:00 2001 From: jremy Date: Thu, 24 Oct 2024 11:51:04 +0200 Subject: [PATCH 26/26] feat(mongodb): add id doc snapshot --- docs/resources/mongodb_snapshot.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/resources/mongodb_snapshot.md b/docs/resources/mongodb_snapshot.md index c405b6338f..09b9937e17 100644 --- a/docs/resources/mongodb_snapshot.md +++ b/docs/resources/mongodb_snapshot.md @@ -39,6 +39,8 @@ The following arguments are supported: In addition to all arguments above, the following attributes are exported: +- `id` - The ID of the snapshot. + - `instance_name` - The name of the MongoDB® instance from which the snapshot was created. - `size` - The size of the MongoDB® snapshot in bytes.