From 088fd4c1ac57e8a9c9ddd2f10db5cffbc689bef1 Mon Sep 17 00:00:00 2001 From: Laure Masson Date: Wed, 6 Aug 2025 17:11:51 +0200 Subject: [PATCH 1/9] fix(block): ignore inaccessible legacy snapshot in diff --- internal/services/block/helpers_block.go | 20 ++++++++++++++++++++ internal/services/block/volume.go | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/internal/services/block/helpers_block.go b/internal/services/block/helpers_block.go index edfab6fc76..26ccc5515a 100644 --- a/internal/services/block/helpers_block.go +++ b/internal/services/block/helpers_block.go @@ -56,6 +56,26 @@ func customDiffCannotShrink(key string) schema.CustomizeDiffFunc { }) } +func customDiffSnapshot(key string) schema.CustomizeDiffFunc { + return func(ctx context.Context, diff *schema.ResourceDiff, i any) error { + if !diff.HasChange(key) { + return nil + } + + oldValue, newValue := diff.GetChange(key) + blockAPI := block.NewAPI(meta.ExtractScwClient(i)) + + _, err := blockAPI.GetSnapshot(&block.GetSnapshotRequest{ + SnapshotID: oldValue.(string), + }) + if (httperrors.Is403(err) || httperrors.Is404(err)) && newValue == nil { + return nil + } + + return diff.ForceNew("snapshot_id") + } +} + func migrateInstanceToBlockVolume(ctx context.Context, api *instancehelpers.BlockAndInstanceAPI, zone scw.Zone, volumeID string, timeout time.Duration) (*block.Volume, error) { instanceVolumeResp, err := api.GetVolume(&instance.GetVolumeRequest{ Zone: zone, diff --git a/internal/services/block/volume.go b/internal/services/block/volume.go index f609a6dae0..8d953cd898 100644 --- a/internal/services/block/volume.go +++ b/internal/services/block/volume.go @@ -54,7 +54,6 @@ func ResourceVolume() *schema.Resource { "snapshot_id": { Type: schema.TypeString, Optional: true, - ForceNew: true, Description: "The snapshot to create the volume from", DiffSuppressFunc: dsf.Locality, }, @@ -79,6 +78,7 @@ func ResourceVolume() *schema.Resource { }, CustomizeDiff: customdiff.All( customDiffCannotShrink("size_in_gb"), + customDiffSnapshot("snapshot_id"), ), } } From 6dbc43c01c9a83607d483d4c1a24bdd65265cb57 Mon Sep 17 00:00:00 2001 From: Laure Masson Date: Thu, 7 Aug 2025 10:03:21 +0200 Subject: [PATCH 2/9] fix(block): remove forceNew to add customdiff --- internal/services/block/helpers_block.go | 10 ++++++++-- internal/services/block/volume.go | 2 +- tests/dev.tfrc | 0 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 tests/dev.tfrc diff --git a/internal/services/block/helpers_block.go b/internal/services/block/helpers_block.go index 26ccc5515a..f1708341b1 100644 --- a/internal/services/block/helpers_block.go +++ b/internal/services/block/helpers_block.go @@ -2,6 +2,7 @@ package block import ( "context" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/logging" "time" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff" @@ -68,11 +69,16 @@ func customDiffSnapshot(key string) schema.CustomizeDiffFunc { _, err := blockAPI.GetSnapshot(&block.GetSnapshotRequest{ SnapshotID: oldValue.(string), }) - if (httperrors.Is403(err) || httperrors.Is404(err)) && newValue == nil { + logging.L.Debugf("customDiffSnapshot: old=%s, new=%s", oldValue, newValue) + logging.L.Debugf("error: %v", err) + + if (httperrors.Is403(err) || httperrors.Is404(err)) && newValue == "" { + logging.L.Infof("customDiffSnapshot: snapshot %s is missing or forbidden", oldValue) return nil } - return diff.ForceNew("snapshot_id") + logging.L.Infof("customDiffSnapshot: forcing recreation due to snapshot_id change") + return diff.ForceNew(key) } } diff --git a/internal/services/block/volume.go b/internal/services/block/volume.go index 8d953cd898..127584014b 100644 --- a/internal/services/block/volume.go +++ b/internal/services/block/volume.go @@ -2,7 +2,6 @@ package block 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" @@ -201,6 +200,7 @@ func ResourceBlockVolumeUpdate(ctx context.Context, d *schema.ResourceData, m an req := &block.UpdateVolumeRequest{ Zone: zone, VolumeID: volume.ID, + Name: types.ExpandUpdatedStringPtr(volume.Name), } if d.HasChange("name") { diff --git a/tests/dev.tfrc b/tests/dev.tfrc new file mode 100644 index 0000000000..e69de29bb2 From f695db025c716a9a1489b510c1d4f40394571388 Mon Sep 17 00:00:00 2001 From: Laure Masson Date: Thu, 7 Aug 2025 11:42:41 +0200 Subject: [PATCH 3/9] set snapshot_id to null if legagcy one --- internal/services/block/helpers_block.go | 7 ------- internal/services/block/volume.go | 10 +++++++--- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/internal/services/block/helpers_block.go b/internal/services/block/helpers_block.go index f1708341b1..572d8f78e6 100644 --- a/internal/services/block/helpers_block.go +++ b/internal/services/block/helpers_block.go @@ -2,7 +2,6 @@ package block import ( "context" - "github.com/scaleway/terraform-provider-scaleway/v2/internal/logging" "time" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff" @@ -69,15 +68,9 @@ func customDiffSnapshot(key string) schema.CustomizeDiffFunc { _, err := blockAPI.GetSnapshot(&block.GetSnapshotRequest{ SnapshotID: oldValue.(string), }) - logging.L.Debugf("customDiffSnapshot: old=%s, new=%s", oldValue, newValue) - logging.L.Debugf("error: %v", err) - if (httperrors.Is403(err) || httperrors.Is404(err)) && newValue == "" { - logging.L.Infof("customDiffSnapshot: snapshot %s is missing or forbidden", oldValue) return nil } - - logging.L.Infof("customDiffSnapshot: forcing recreation due to snapshot_id change") return diff.ForceNew(key) } } diff --git a/internal/services/block/volume.go b/internal/services/block/volume.go index 127584014b..2b171a3e4b 100644 --- a/internal/services/block/volume.go +++ b/internal/services/block/volume.go @@ -53,6 +53,7 @@ func ResourceVolume() *schema.Resource { "snapshot_id": { Type: schema.TypeString, Optional: true, + ForceNew: true, Description: "The snapshot to create the volume from", DiffSuppressFunc: dsf.Locality, }, @@ -76,8 +77,8 @@ func ResourceVolume() *schema.Resource { "project_id": account.ProjectIDSchema(), }, CustomizeDiff: customdiff.All( - customDiffCannotShrink("size_in_gb"), customDiffSnapshot("snapshot_id"), + customDiffCannotShrink("size_in_gb"), ), } } @@ -170,8 +171,11 @@ func ResourceBlockVolumeRead(ctx context.Context, d *schema.ResourceData, m any) _ = d.Set("zone", volume.Zone) _ = d.Set("project_id", volume.ProjectID) _ = d.Set("tags", volume.Tags) - - if volume.ParentSnapshotID != nil { + _, err = api.GetSnapshot(&block.GetSnapshotRequest{ + SnapshotID: *volume.ParentSnapshotID, + Zone: zone, + }) + if volume.ParentSnapshotID != nil && !httperrors.Is403(err) && !httperrors.Is404(err) { _ = d.Set("snapshot_id", zonal.NewIDString(zone, *volume.ParentSnapshotID)) } else { _ = d.Set("snapshot_id", "") From 285a74b3ea4fd9d9df3186e76d47449a7b3843df Mon Sep 17 00:00:00 2001 From: Laure Masson Date: Thu, 7 Aug 2025 11:44:34 +0200 Subject: [PATCH 4/9] remove dev.tfrc --- internal/services/block/volume.go | 21 +++++++++++++-------- tests/dev.tfrc | 12 ++++++++++++ 2 files changed, 25 insertions(+), 8 deletions(-) diff --git a/internal/services/block/volume.go b/internal/services/block/volume.go index 2b171a3e4b..a523a430dd 100644 --- a/internal/services/block/volume.go +++ b/internal/services/block/volume.go @@ -171,16 +171,21 @@ func ResourceBlockVolumeRead(ctx context.Context, d *schema.ResourceData, m any) _ = d.Set("zone", volume.Zone) _ = d.Set("project_id", volume.ProjectID) _ = d.Set("tags", volume.Tags) - _, err = api.GetSnapshot(&block.GetSnapshotRequest{ - SnapshotID: *volume.ParentSnapshotID, - Zone: zone, - }) - if volume.ParentSnapshotID != nil && !httperrors.Is403(err) && !httperrors.Is404(err) { - _ = d.Set("snapshot_id", zonal.NewIDString(zone, *volume.ParentSnapshotID)) - } else { - _ = d.Set("snapshot_id", "") + snapshotID := "" + if volume.ParentSnapshotID != nil { + id := *volume.ParentSnapshotID + _, err := api.GetSnapshot(&block.GetSnapshotRequest{ + SnapshotID: id, + Zone: zone, + }) + + if !httperrors.Is403(err) && !httperrors.Is404(err) { + snapshotID = zonal.NewIDString(zone, id) + } } + _ = d.Set("snapshot_id", snapshotID) + return nil } diff --git a/tests/dev.tfrc b/tests/dev.tfrc index e69de29bb2..50dda26aa0 100644 --- a/tests/dev.tfrc +++ b/tests/dev.tfrc @@ -0,0 +1,12 @@ +provider_installation { + dev_overrides { + "scaleway/scaleway" = "/Users/lmasson/go/bin" + } + + # For all other providers, install them directly from their origin provider + # registries as normal. If you omit this, Terraform will _only_ use + # the dev_overrides block, and so no other providers will be available. + direct {} +} + + From d83ec6816e34c17cbc5a6cd1904dd58d07444d9a Mon Sep 17 00:00:00 2001 From: Laure Masson Date: Thu, 7 Aug 2025 12:04:07 +0200 Subject: [PATCH 5/9] update cassettes export-to-s3 --- .../testdata/snapshot-to-s3.cassette.yaml | 2433 +++++++++-------- 1 file changed, 1241 insertions(+), 1192 deletions(-) diff --git a/internal/services/block/testdata/snapshot-to-s3.cassette.yaml b/internal/services/block/testdata/snapshot-to-s3.cassette.yaml index a700bd8e0a..8a21e175c6 100644 --- a/internal/services/block/testdata/snapshot-to-s3.cassette.yaml +++ b/internal/services/block/testdata/snapshot-to-s3.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-jovial-albattani","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_empty":{"size":10000000000},"tags":[]}' + body: '{"name":"tf-volume-trusting-germain","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_empty":{"size":10000000000},"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-07-07T10:16:30.790676Z","id":"26430bd6-b781-4941-a64c-bfa2ce580869","last_detached_at":null,"name":"tf-volume-jovial-albattani","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:16:30.790676Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:02:48.022211Z","id":"c9a7d38e-4107-4320-9248-c4cb1e918074","last_detached_at":null,"name":"tf-volume-trusting-germain","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:02:48.022211Z","zone":"fr-par-1"}' headers: Content-Length: - - "409" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:30 GMT + - Thu, 07 Aug 2025 10:02:48 GMT Server: - - Scaleway API Gateway (fr-par-2;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: - - bafc3d1a-b6db-496b-b9bb-b52de71b572c + - e79bcb13-faa7-4d97-aa0a-19d0139c61cf status: 200 OK code: 200 - duration: 162.848ms + duration: 508.052375ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-07-07T10:16:30.790676Z","id":"26430bd6-b781-4941-a64c-bfa2ce580869","last_detached_at":null,"name":"tf-volume-jovial-albattani","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:16:30.790676Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:02:48.022211Z","id":"c9a7d38e-4107-4320-9248-c4cb1e918074","last_detached_at":null,"name":"tf-volume-trusting-germain","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:02:48.022211Z","zone":"fr-par-1"}' headers: Content-Length: - - "409" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:30 GMT + - Thu, 07 Aug 2025 10:02:48 GMT Server: - - Scaleway API Gateway (fr-par-2;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: - - bc38482c-364b-4165-bc5e-99f16f62acc9 + - 567cfbfb-733f-40af-a6ce-51ff405296d9 status: 200 OK code: 200 - duration: 38.909625ms + duration: 36.701583ms - id: 2 request: proto: HTTP/1.1 @@ -109,7 +109,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -118,16 +118,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - ac9de00c-b853-4d7d-899e-b3124a3053f0 + - 237851d6-7a20-4a5e-8e89-4ed7e83d3b9a Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101630Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/ + - 20250807T100247Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/ method: PUT response: proto: HTTP/2.0 @@ -142,16 +142,16 @@ interactions: Content-Length: - "0" Date: - - Mon, 07 Jul 2025 10:16:30 GMT + - Thu, 07 Aug 2025 10:02:47 GMT Location: - - /test-acc-scaleway-export-block-snapshot-1612558531964566748 + - /test-acc-scaleway-export-block-snapshot-6546454022913977401 X-Amz-Id-2: - - txga95381a3ba1b4c98b7f9-00686b9e7e + - txgd65a1e7448ec49fab6c6-00689479c7 X-Amz-Request-Id: - - txga95381a3ba1b4c98b7f9-00686b9e7e + - txgd65a1e7448ec49fab6c6-00689479c7 status: 200 OK code: 200 - duration: 4.525696125s + duration: 4.401683958s - id: 3 request: proto: HTTP/1.1 @@ -160,7 +160,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -169,11 +169,11 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 5e0305b1-e504-400e-9276-e2bb132a52c4 + - bc03d1a7-a1e9-4706-84bb-6275fb00df19 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,Z,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,Z,e X-Amz-Acl: - private X-Amz-Checksum-Crc32: @@ -181,8 +181,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101635Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?acl= + - 20250807T100251Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -197,14 +197,14 @@ interactions: Content-Length: - "0" Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:51 GMT X-Amz-Id-2: - - txgbf9281aa33ec43998cbf-00686b9e83 + - txg1cc7dbec623d4394a84c-00689479cb X-Amz-Request-Id: - - txgbf9281aa33ec43998cbf-00686b9e83 + - txg1cc7dbec623d4394a84c-00689479cb status: 200 OK code: 200 - duration: 367.198041ms + duration: 364.619916ms - id: 4 request: proto: HTTP/1.1 @@ -213,7 +213,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -222,16 +222,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1d04cd6f-65aa-4529-898b-1e6197736085 + - dc677c86-4aec-4e88-9401-8808d1792f6f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101635Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?acl= + - 20250807T100252Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -250,14 +250,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:52 GMT X-Amz-Id-2: - - txgd4e72872160a4589897a-00686b9e83 + - txg4343fd76bdde4b19b1da-00689479cc X-Amz-Request-Id: - - txgd4e72872160a4589897a-00686b9e83 + - txg4343fd76bdde4b19b1da-00689479cc status: 200 OK code: 200 - duration: 13.117ms + duration: 12.653125ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +266,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -275,16 +275,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 67628de9-413a-4998-b858-aad71cc85558 + - 3b34ffa8-115c-4194-abe8-47f7209cca38 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101635Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?object-lock= + - 20250807T100252Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -294,21 +294,21 @@ interactions: trailer: {} content_length: 328 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgd53c835b97c34bfeba88-00686b9e83txgd53c835b97c34bfeba88-00686b9e83/test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgc0e24d57279b41a28834-00689479cctxgc0e24d57279b41a28834-00689479cc/test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "328" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:52 GMT X-Amz-Id-2: - - txgd53c835b97c34bfeba88-00686b9e83 + - txgc0e24d57279b41a28834-00689479cc X-Amz-Request-Id: - - txgd53c835b97c34bfeba88-00686b9e83 + - txgc0e24d57279b41a28834-00689479cc status: 404 Not Found code: 404 - duration: 116.166208ms + duration: 115.106125ms - id: 6 request: proto: HTTP/1.1 @@ -317,7 +317,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -326,16 +326,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 9f815795-2797-4b61-8916-4f8359f7ed73 + - 736e3193-cfae-4a57-b5d4-2e07f665287d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101635Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/ + - 20250807T100252Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -347,21 +347,21 @@ interactions: uncompressed: false body: |- - test-acc-scaleway-export-block-snapshot-16125585319645667481000false + test-acc-scaleway-export-block-snapshot-65464540229139774011000false headers: Content-Length: - "285" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:52 GMT X-Amz-Id-2: - - txg39604ef2a3bc4d308520-00686b9e83 + - txg70a3d7bdba8e4d11bbdf-00689479cc X-Amz-Request-Id: - - txg39604ef2a3bc4d308520-00686b9e83 + - txg70a3d7bdba8e4d11bbdf-00689479cc status: 200 OK code: 200 - duration: 125.85325ms + duration: 250.32175ms - id: 7 request: proto: HTTP/1.1 @@ -370,7 +370,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -379,16 +379,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - c36e727e-78df-4aea-be6f-a8a48dab4d8e + - aa1a3a4c-abf0-4b6a-aa74-20ad5a19b18b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101635Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?tagging= + - 20250807T100252Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -398,21 +398,21 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxge4fea8b1930b4773b282-00686b9e83txge4fea8b1930b4773b282-00686b9e83/test-acc-scaleway-export-block-snapshot-1612558531964566748test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchTagSetThe TagSet does not existtxg109a40eb544745fc94ee-00689479cctxg109a40eb544745fc94ee-00689479cc/test-acc-scaleway-export-block-snapshot-6546454022913977401test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "357" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:52 GMT X-Amz-Id-2: - - txge4fea8b1930b4773b282-00686b9e83 + - txg109a40eb544745fc94ee-00689479cc X-Amz-Request-Id: - - txge4fea8b1930b4773b282-00686b9e83 + - txg109a40eb544745fc94ee-00689479cc status: 404 Not Found code: 404 - duration: 25.677833ms + duration: 227.600542ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -430,16 +430,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - eabe32a3-582f-47e8-8831-82e0b9b5c8b8 + - 880b096f-d0be-4008-b206-128ac07d06d8 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101635Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?cors= + - 20250807T100252Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -449,21 +449,21 @@ interactions: trailer: {} content_length: 296 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg815064cfcf5443abaeb3-00686b9e83txg815064cfcf5443abaeb3-00686b9e83/test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg24e093c843f74af7bc2c-00689479cctxg24e093c843f74af7bc2c-00689479cc/test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "296" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:52 GMT X-Amz-Id-2: - - txg815064cfcf5443abaeb3-00686b9e83 + - txg24e093c843f74af7bc2c-00689479cc X-Amz-Request-Id: - - txg815064cfcf5443abaeb3-00686b9e83 + - txg24e093c843f74af7bc2c-00689479cc status: 404 Not Found code: 404 - duration: 12.71075ms + duration: 132.312541ms - id: 9 request: proto: HTTP/1.1 @@ -472,25 +472,15 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: api.scaleway.com remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - b9adcc9c-3349-4062-8531-81ed7e630eb6 - Amz-Sdk-Request: - - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20250707T101635Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?versioning= + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 method: GET response: proto: HTTP/2.0 @@ -498,25 +488,31 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 107 + content_length: 424 uncompressed: false - body: |- - - + body: '{"created_at":"2025-08-07T10:02:48.022211Z","id":"c9a7d38e-4107-4320-9248-c4cb1e918074","last_detached_at":null,"name":"tf-volume-trusting-germain","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:02:48.022211Z","zone":"fr-par-1"}' headers: Content-Length: - - "107" + - "424" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - - text/xml; charset=utf-8 + - application/json Date: - - Mon, 07 Jul 2025 10:16:35 GMT - X-Amz-Id-2: - - txgbbf41a8ce3ef4a259022-00686b9e83 - X-Amz-Request-Id: - - txgbbf41a8ce3ef4a259022-00686b9e83 + - Thu, 07 Aug 2025 10:02: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: + - f9c5ea11-d14e-447f-a408-1855de72b1d9 status: 200 OK code: 200 - duration: 22.195084ms + duration: 48.623458ms - id: 10 request: proto: HTTP/1.1 @@ -532,8 +528,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 method: GET response: proto: HTTP/2.0 @@ -541,20 +537,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 424 uncompressed: false - body: '{"created_at":"2025-07-07T10:16:30.790676Z","id":"26430bd6-b781-4941-a64c-bfa2ce580869","last_detached_at":null,"name":"tf-volume-jovial-albattani","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:16:30.790676Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:02:48.022211Z","id":"c9a7d38e-4107-4320-9248-c4cb1e918074","last_detached_at":null,"name":"tf-volume-trusting-germain","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:02:48.022211Z","zone":"fr-par-1"}' headers: Content-Length: - - "410" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -562,10 +558,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b9d583a-74d8-4de2-a3da-e10930aca002 + - bad42d03-275b-4e2c-a66b-1000653d5f6e status: 200 OK code: 200 - duration: 52.441584ms + duration: 51.843584ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +570,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -583,16 +579,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 89935e04-4282-432e-86d9-073d0fc90067 + - 5f17f06b-18b6-49bb-9d75-a4fb1173404e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101635Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?lifecycle= + - 20250807T100253Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -600,23 +596,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 390 + content_length: 107 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgfe14ab1c521746ea9786-00686b9e83txgfe14ab1c521746ea9786-00686b9e83/test-acc-scaleway-export-block-snapshot-1612558531964566748test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: |- + + headers: Content-Length: - - "390" + - "107" Content-Type: - - application/xml + - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:53 GMT X-Amz-Id-2: - - txgfe14ab1c521746ea9786-00686b9e83 + - txgdd678a6f99054445afec-00689479cd X-Amz-Request-Id: - - txgfe14ab1c521746ea9786-00686b9e83 - status: 404 Not Found - code: 404 - duration: 32.707833ms + - txgdd678a6f99054445afec-00689479cd + status: 200 OK + code: 200 + duration: 212.208333ms - id: 12 request: proto: HTTP/1.1 @@ -625,15 +623,25 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: api.scaleway.com + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" form: {} headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 56a3c908-54cd-4cd9-8a71-eaea8cc7faba + Amz-Sdk-Request: + - attempt=1; max=3 User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20250807T100253Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -641,31 +649,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 390 uncompressed: false - body: '{"created_at":"2025-07-07T10:16:30.790676Z","id":"26430bd6-b781-4941-a64c-bfa2ce580869","last_detached_at":null,"name":"tf-volume-jovial-albattani","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:16:30.790676Z","zone":"fr-par-1"}' + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg530793530b954a7e80c7-00689479cdtxg530793530b954a7e80c7-00689479cd/test-acc-scaleway-export-block-snapshot-6546454022913977401test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "390" Content-Type: - - application/json + - application/xml Date: - - Mon, 07 Jul 2025 10:16: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: - - 06835691-8796-4b5f-bc3b-a82aa5921dd0 - status: 200 OK - code: 200 - duration: 50.359875ms + - Thu, 07 Aug 2025 10:02:53 GMT + X-Amz-Id-2: + - txg530793530b954a7e80c7-00689479cd + X-Amz-Request-Id: + - txg530793530b954a7e80c7-00689479cd + status: 404 Not Found + code: 404 + duration: 269.781667ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: content_length: 45 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "4\r\ntest\r\n0\r\nx-amz-checksum-crc32:2H9+DA==\r\n\r\n" @@ -683,7 +683,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 14260929-ea7f-4ae3-885d-1522531c56ca + - 05248b44-f77c-459e-a0c8-847e574510c9 Amz-Sdk-Request: - attempt=1; max=3 Content-Encoding: @@ -691,16 +691,16 @@ interactions: Content-Type: - application/octet-stream User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,Z,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,Z,e X-Amz-Content-Sha256: - STREAMING-UNSIGNED-PAYLOAD-TRAILER X-Amz-Date: - - 20250707T101635Z + - 20250807T100253Z X-Amz-Decoded-Content-Length: - "4" X-Amz-Trailer: - x-amz-checksum-crc32 - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?x-id=PutObject + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?x-id=PutObject method: PUT response: proto: HTTP/2.0 @@ -715,7 +715,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 07 Jul 2025 10:16:35 GMT + - Thu, 07 Aug 2025 10:02:53 GMT Etag: - '"098f6bcd4621d373cade4e832627b4f6"' X-Amz-Checksum-Crc32: @@ -723,12 +723,12 @@ interactions: X-Amz-Checksum-Type: - FULL_OBJECT X-Amz-Id-2: - - txgf0acb81226074290bce6-00686b9e83 + - txg78dc6726200f49748639-00689479cd X-Amz-Request-Id: - - txgf0acb81226074290bce6-00686b9e83 + - txg78dc6726200f49748639-00689479cd status: 200 OK code: 200 - duration: 3.866760417s + duration: 1.890808s - id: 14 request: proto: HTTP/1.1 @@ -737,7 +737,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -746,16 +746,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1318fe41-56af-4ad8-9c29-2852517c539b + - 5eb6cb30-4636-427d-8d08-d0668ab7be34 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101639Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2 + - 20250807T100255Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2 method: HEAD response: proto: HTTP/2.0 @@ -774,18 +774,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 07 Jul 2025 10:16:39 GMT + - Thu, 07 Aug 2025 10:02:55 GMT Etag: - '"098f6bcd4621d373cade4e832627b4f6"' Last-Modified: - - Mon, 07 Jul 2025 10:16:36 GMT + - Thu, 07 Aug 2025 10:02:53 GMT X-Amz-Id-2: - - txg33c5a919a9ea4f92b70a-00686b9e87 + - txgd5f6d0635a4b491f85ed-00689479cf X-Amz-Request-Id: - - txg33c5a919a9ea4f92b70a-00686b9e87 + - txgd5f6d0635a4b491f85ed-00689479cf status: 200 OK code: 200 - duration: 91.734541ms + duration: 307.083416ms - id: 15 request: proto: HTTP/1.1 @@ -794,7 +794,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -803,16 +803,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0517d2bf-1433-4085-90de-585ab6b04867 + - 57910a61-dae7-4da1-bf0f-119bdba2d3d5 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101639Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?tagging= + - 20250807T100255Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -831,14 +831,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:39 GMT + - Thu, 07 Aug 2025 10:02:55 GMT X-Amz-Id-2: - - txg88ddab07c3064160a2b0-00686b9e87 + - txg46a3caccb3814c5db742-00689479cf X-Amz-Request-Id: - - txg88ddab07c3064160a2b0-00686b9e87 + - txg46a3caccb3814c5db742-00689479cf status: 200 OK code: 200 - duration: 59.148875ms + duration: 114.783042ms - id: 16 request: proto: HTTP/1.1 @@ -847,7 +847,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -856,16 +856,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - bcff4470-cde9-463f-b860-dc6dad485d55 + - 50427cf1-38fb-4f57-8381-f460da05eab1 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101639Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?acl= + - 20250807T100255Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -884,14 +884,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:40 GMT + - Thu, 07 Aug 2025 10:02:55 GMT X-Amz-Id-2: - - txg383803ebdda34204ace0-00686b9e88 + - txg001c679017714d76a90c-00689479cf X-Amz-Request-Id: - - txg383803ebdda34204ace0-00686b9e88 + - txg001c679017714d76a90c-00689479cf status: 200 OK code: 200 - duration: 18.487542ms + duration: 8.473958ms - id: 17 request: proto: HTTP/1.1 @@ -903,13 +903,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"test-acc-export-block-snapshot-qcow2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' + body: '{"volume_id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"test-acc-export-block-snapshot-qcow2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: @@ -918,20 +918,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 475 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "461" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:40 GMT + - Thu, 07 Aug 2025 10:02:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -939,10 +939,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f133601-dd6c-4e9b-aef3-deec375104e5 + - 39efc28c-3f23-4281-ba6c-22914b137d24 status: 200 OK code: 200 - duration: 330.853666ms + duration: 1.212451583s - id: 18 request: proto: HTTP/1.1 @@ -958,8 +958,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -967,20 +967,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "461" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:40 GMT + - Thu, 07 Aug 2025 10:02:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -988,60 +988,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04303d96-dea9-4c0d-a341-0172b18b9339 + - 3e31c3e9-e8d0-4d39-b2ae-a1defded22a8 status: 200 OK code: 200 - duration: 109.47275ms + duration: 489.251917ms - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 462 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "462" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 07 Jul 2025 10:16: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: - - 6025e0fa-9c28-4232-8dc5-0b55ff14530c - status: 200 OK - code: 200 - duration: 128.8575ms - - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1052,14 +1003,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"bucket":"test-acc-scaleway-export-block-snapshot-1612558531964566748","key":"test-acc-export-block-snapshot-qcow2"}' + body: '{"bucket":"test-acc-scaleway-export-block-snapshot-6546454022913977401","key":"test-acc-export-block-snapshot-qcow2"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17/export-to-object-storage + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5/export-to-object-storage method: POST response: proto: HTTP/2.0 @@ -1067,20 +1018,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:45 GMT + - Thu, 07 Aug 2025 10:02:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1088,11 +1039,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 037fa3c4-8da5-4e88-9ae4-0caf185bd5f6 + - 7506c436-048b-48bc-9935-70a13d30919b status: 200 OK code: 200 - duration: 87.484042ms - - id: 21 + duration: 97.243958ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1107,8 +1058,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -1116,20 +1067,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:45 GMT + - Thu, 07 Aug 2025 10:02:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1137,11 +1088,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbd01af5-d590-437c-a037-0a147d346da4 + - 5110aefc-edb8-4591-985e-1c7060a15f58 status: 200 OK code: 200 - duration: 124.937375ms - - id: 22 + duration: 392.473041ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1156,8 +1107,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -1165,20 +1116,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:50 GMT + - Thu, 07 Aug 2025 10:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1186,11 +1137,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fd740c6-839d-4765-a6a4-89b7a10b64cb + - b47f443b-76ec-497d-9656-7a21b74f1a80 status: 200 OK code: 200 - duration: 162.936791ms - - id: 23 + duration: 1.138918333s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1205,8 +1156,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -1214,20 +1165,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:56 GMT + - Thu, 07 Aug 2025 10:03:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1235,11 +1186,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcdaad32-d81e-4056-9322-1e4eeb27efca + - bd328ae9-2615-4be2-b5f5-dabf1bfdc828 status: 200 OK code: 200 - duration: 145.523625ms - - id: 24 + duration: 1.759858334s + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1254,8 +1205,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -1263,20 +1214,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:56 GMT + - Thu, 07 Aug 2025 10:03:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1284,11 +1235,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e4fbd13-520c-4052-aeae-d15b8b817b3d + - 0548e933-0a75-466f-b7f3-206c4b80480e status: 200 OK code: 200 - duration: 146.780833ms - - id: 25 + duration: 535.340083ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1296,7 +1247,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1305,18 +1256,18 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 2229fcb2-2bb0-4dd0-892d-a9f601ccd55d + - e5e85b75-e1ff-4a29-981d-9849fa092a30 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,b,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,b,e X-Amz-Checksum-Mode: - ENABLED X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101656Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?x-id=GetObject + - 20250807T100311Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?x-id=GetObject method: GET response: proto: HTTP/2.0 @@ -5083,19 +5034,19 @@ interactions: Content-Type: - binary/octet-stream Date: - - Mon, 07 Jul 2025 10:16:56 GMT + - Thu, 07 Aug 2025 10:03:11 GMT Etag: - '"0345725c6e663688db0a073eb0aca7e2"' Last-Modified: - - Mon, 07 Jul 2025 10:16:51 GMT + - Thu, 07 Aug 2025 10:03:04 GMT X-Amz-Id-2: - - txge97abd4e267345c98d6a-00686b9e98 + - txge12f4159948e4294b23b-00689479df X-Amz-Request-Id: - - txge97abd4e267345c98d6a-00686b9e98 + - txge12f4159948e4294b23b-00689479df status: 200 OK code: 200 - duration: 174.527208ms - - id: 26 + duration: 245.708625ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -5110,8 +5061,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 method: GET response: proto: HTTP/2.0 @@ -5119,20 +5070,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 424 uncompressed: false - body: '{"created_at":"2025-07-07T10:16:30.790676Z","id":"26430bd6-b781-4941-a64c-bfa2ce580869","last_detached_at":null,"name":"tf-volume-jovial-albattani","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:16:30.790676Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:02:48.022211Z","id":"c9a7d38e-4107-4320-9248-c4cb1e918074","last_detached_at":null,"name":"tf-volume-trusting-germain","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:02:48.022211Z","zone":"fr-par-1"}' headers: Content-Length: - - "410" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5140,11 +5091,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 109d4311-e717-4031-96e7-f6fae894e8f3 + - 0f87f238-4888-429c-a0be-2ada247e5aa1 status: 200 OK code: 200 - duration: 46.790666ms - - id: 27 + duration: 33.268334ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -5152,7 +5103,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5161,16 +5112,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 36e0f199-ddfd-4eac-a6ad-c482454e8054 + - baecde08-21fa-46ef-b685-91879fb2d59c Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?acl= + - 20250807T100312Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -5189,15 +5140,15 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:12 GMT X-Amz-Id-2: - - txg71f263b4e61d4cd5a221-00686b9e99 + - txgc79bd4f039254f95bfe6-00689479e0 X-Amz-Request-Id: - - txg71f263b4e61d4cd5a221-00686b9e99 + - txgc79bd4f039254f95bfe6-00689479e0 status: 200 OK code: 200 - duration: 114.012958ms - - id: 28 + duration: 217.460042ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -5205,7 +5156,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5214,16 +5165,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 96793b78-c8b5-49bf-be50-49c719f15667 + - adc0cb9c-1786-4baa-b9e6-af4c55a2db30 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?object-lock= + - 20250807T100312Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -5233,22 +5184,22 @@ interactions: trailer: {} content_length: 328 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgc36451d6c458480f8ec9-00686b9e99txgc36451d6c458480f8ec9-00686b9e99/test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgb155ee61ab1c44aba186-00689479e0txgb155ee61ab1c44aba186-00689479e0/test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "328" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:12 GMT X-Amz-Id-2: - - txgc36451d6c458480f8ec9-00686b9e99 + - txgb155ee61ab1c44aba186-00689479e0 X-Amz-Request-Id: - - txgc36451d6c458480f8ec9-00686b9e99 + - txgb155ee61ab1c44aba186-00689479e0 status: 404 Not Found code: 404 - duration: 12.615166ms - - id: 29 + duration: 116.790625ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -5256,7 +5207,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5265,16 +5216,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1ee9cce1-c255-4386-85fd-eb96fea74ab0 + - f78f5c41-b741-446c-81b1-a311d9bc26f1 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/ + - 20250807T100312Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -5286,22 +5237,22 @@ interactions: uncompressed: false body: |- - test-acc-scaleway-export-block-snapshot-16125585319645667481000falsetest-acc-export-block-snapshot-qcow22025-07-07T10:16:51.000Z"0345725c6e663688db0a073eb0aca7e2"196760d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2STANDARD + test-acc-scaleway-export-block-snapshot-65464540229139774011000falsetest-acc-export-block-snapshot-qcow22025-08-07T10:03:04.000Z"0345725c6e663688db0a073eb0aca7e2"196760d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2STANDARD headers: Content-Length: - "714" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:12 GMT X-Amz-Id-2: - - txga099404562764da2acbc-00686b9e99 + - txg0f1e81991b5e4283b5dd-00689479e0 X-Amz-Request-Id: - - txga099404562764da2acbc-00686b9e99 + - txg0f1e81991b5e4283b5dd-00689479e0 status: 200 OK code: 200 - duration: 27.695542ms - - id: 30 + duration: 534.700208ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -5309,7 +5260,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5318,16 +5269,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f03f3f21-8979-4e64-85c1-21b1710d200d + - d981b8d8-341f-4edb-96bc-cea22295b34c Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?tagging= + - 20250807T100312Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -5337,22 +5288,22 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg6aa05a1e39a1441b8fae-00686b9e99txg6aa05a1e39a1441b8fae-00686b9e99/test-acc-scaleway-export-block-snapshot-1612558531964566748test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchTagSetThe TagSet does not existtxgd05faabaa3d64953a943-00689479e0txgd05faabaa3d64953a943-00689479e0/test-acc-scaleway-export-block-snapshot-6546454022913977401test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "357" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:12 GMT X-Amz-Id-2: - - txg6aa05a1e39a1441b8fae-00686b9e99 + - txgd05faabaa3d64953a943-00689479e0 X-Amz-Request-Id: - - txg6aa05a1e39a1441b8fae-00686b9e99 + - txgd05faabaa3d64953a943-00689479e0 status: 404 Not Found code: 404 - duration: 15.1005ms - - id: 31 + duration: 116.31625ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -5360,7 +5311,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5369,16 +5320,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 3ee1a0ea-a5dd-43d8-825d-2d30cdbad985 + - e9854d86-1b37-4574-b246-d9facdfad2d9 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?cors= + - 20250807T100313Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -5388,22 +5339,22 @@ interactions: trailer: {} content_length: 296 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg76a07b38fdb84bbc8995-00686b9e99txg76a07b38fdb84bbc8995-00686b9e99/test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg6e9e2d5ef5b7460db77b-00689479e1txg6e9e2d5ef5b7460db77b-00689479e1/test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "296" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:13 GMT X-Amz-Id-2: - - txg76a07b38fdb84bbc8995-00686b9e99 + - txg6e9e2d5ef5b7460db77b-00689479e1 X-Amz-Request-Id: - - txg76a07b38fdb84bbc8995-00686b9e99 + - txg6e9e2d5ef5b7460db77b-00689479e1 status: 404 Not Found code: 404 - duration: 11.117709ms - - id: 32 + duration: 247.618083ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -5411,7 +5362,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5420,16 +5371,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 4dbe2ff1-cbd5-481e-97f2-32b9ea2f522c + - ffa1c968-7c20-42ec-987c-24e1efaa64c8 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?versioning= + - 20250807T100313Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -5448,15 +5399,15 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:13 GMT X-Amz-Id-2: - - txg65dbcff3527f4914b208-00686b9e99 + - txg48ca95d0613944b392b5-00689479e1 X-Amz-Request-Id: - - txg65dbcff3527f4914b208-00686b9e99 + - txg48ca95d0613944b392b5-00689479e1 status: 200 OK code: 200 - duration: 15.162458ms - - id: 33 + duration: 245.4635ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -5464,7 +5415,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5473,16 +5424,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 70f0987f-ef93-4261-8326-883cc0970e01 + - 004e24c0-b774-4236-b9e2-cd3b7d98b66a Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?lifecycle= + - 20250807T100313Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -5492,22 +5443,22 @@ interactions: trailer: {} content_length: 390 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg23a3e5114cd54a5e8848-00686b9e99txg23a3e5114cd54a5e8848-00686b9e99/test-acc-scaleway-export-block-snapshot-1612558531964566748test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg24b9b85b3a4e42519269-00689479e1txg24b9b85b3a4e42519269-00689479e1/test-acc-scaleway-export-block-snapshot-6546454022913977401test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "390" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:13 GMT X-Amz-Id-2: - - txg23a3e5114cd54a5e8848-00686b9e99 + - txg24b9b85b3a4e42519269-00689479e1 X-Amz-Request-Id: - - txg23a3e5114cd54a5e8848-00686b9e99 + - txg24b9b85b3a4e42519269-00689479e1 status: 404 Not Found code: 404 - duration: 143.645583ms - - id: 34 + duration: 121.3085ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -5515,7 +5466,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5524,16 +5475,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - db9c9484-f5ca-448b-93a6-e7acc6dd3f62 + - ca952797-2e6a-4a35-be2e-1fb35cfb5bcc Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2 + - 20250807T100313Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2 method: HEAD response: proto: HTTP/2.0 @@ -5552,19 +5503,19 @@ interactions: Content-Type: - binary/octet-stream Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:13 GMT Etag: - '"0345725c6e663688db0a073eb0aca7e2"' Last-Modified: - - Mon, 07 Jul 2025 10:16:51 GMT + - Thu, 07 Aug 2025 10:03:04 GMT X-Amz-Id-2: - - txgac4650e12a824423935d-00686b9e99 + - txg7be0e9b6709748d7bb0f-00689479e1 X-Amz-Request-Id: - - txgac4650e12a824423935d-00686b9e99 + - txg7be0e9b6709748d7bb0f-00689479e1 status: 200 OK code: 200 - duration: 16.516583ms - - id: 35 + duration: 237.851542ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -5572,7 +5523,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5581,16 +5532,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - d33795cb-8ad5-4faf-b298-8cdc1f0b276b + - df03e178-ff03-4a3e-9b62-1c3dd80da415 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?tagging= + - 20250807T100313Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -5609,15 +5560,15 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:13 GMT X-Amz-Id-2: - - txg2da923fc9c874c86b9bc-00686b9e99 + - txgbf6847741e644f0f8a6e-00689479e1 X-Amz-Request-Id: - - txg2da923fc9c874c86b9bc-00686b9e99 + - txgbf6847741e644f0f8a6e-00689479e1 status: 200 OK code: 200 - duration: 115.737959ms - - id: 36 + duration: 120.108458ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -5625,7 +5576,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5634,16 +5585,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - c20ecacd-bc20-4db9-a10c-b7967fabc83b + - a82417a7-de7e-44ca-a56a-64d166164f97 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101657Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?acl= + - 20250807T100314Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -5662,15 +5613,15 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:57 GMT + - Thu, 07 Aug 2025 10:03:14 GMT X-Amz-Id-2: - - txg6fc03a97f42b46c2a4b9-00686b9e99 + - txgaedbfbd1c6d049ccbbc2-00689479e2 X-Amz-Request-Id: - - txg6fc03a97f42b46c2a4b9-00686b9e99 + - txgaedbfbd1c6d049ccbbc2-00689479e2 status: 200 OK code: 200 - duration: 15.616791ms - - id: 37 + duration: 216.638458ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -5685,8 +5636,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -5694,20 +5645,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:16:58 GMT + - Thu, 07 Aug 2025 10:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5715,11 +5666,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c95237c6-2232-4680-aa94-6a9ffbc2c3ca + - c6ae5736-0ff7-4fa4-a885-530952c672b1 status: 200 OK code: 200 - duration: 86.817834ms - - id: 38 + duration: 386.750834ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -5727,25 +5678,15 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: api.scaleway.com remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 1ec97d61-ad6c-4178-82e6-502cc8877544 - Amz-Sdk-Request: - - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20250707T101658Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?acl= + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 method: GET response: proto: HTTP/2.0 @@ -5753,26 +5694,32 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 424 uncompressed: false - body: |- - - d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2FULL_CONTROL + body: '{"created_at":"2025-08-07T10:02:48.022211Z","id":"c9a7d38e-4107-4320-9248-c4cb1e918074","last_detached_at":null,"name":"tf-volume-trusting-germain","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:02:48.022211Z","zone":"fr-par-1"}' headers: Content-Length: - - "698" + - "424" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - - text/xml; charset=utf-8 + - application/json Date: - - Mon, 07 Jul 2025 10:16:58 GMT - X-Amz-Id-2: - - txgfcc71b0c679d4d58a80e-00686b9e9a - X-Amz-Request-Id: - - txgfcc71b0c679d4d58a80e-00686b9e9a + - Thu, 07 Aug 2025 10:03: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: + - bee25fae-2483-4069-b2df-d253d6c81f1b status: 200 OK code: 200 - duration: 10.121666ms - - id: 39 + duration: 42.543375ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -5780,7 +5727,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5789,16 +5736,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 961146e1-bcb5-4d17-962a-3fedd9d1de45 + - 1a1cc04d-2995-4a2d-afcf-89d2a78b8fb5 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101658Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?object-lock= + - 20250807T100314Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -5806,24 +5753,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 698 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxga0a552c515af404cb282-00686b9e9atxga0a552c515af404cb282-00686b9e9a/test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: |- + + d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2FULL_CONTROL headers: Content-Length: - - "328" + - "698" Content-Type: - - application/xml + - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:58 GMT + - Thu, 07 Aug 2025 10:03:14 GMT X-Amz-Id-2: - - txga0a552c515af404cb282-00686b9e9a + - txgd16191402d8f472a863b-00689479e2 X-Amz-Request-Id: - - txga0a552c515af404cb282-00686b9e9a - status: 404 Not Found - code: 404 - duration: 11.325625ms - - id: 40 + - txgd16191402d8f472a863b-00689479e2 + status: 200 OK + code: 200 + duration: 113.563833ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -5831,25 +5780,15 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: api.scaleway.com remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - bcc19120-72b8-460d-8ece-4c81644e047f - Amz-Sdk-Request: - - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20250707T101658Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/ + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -5857,26 +5796,32 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 714 + content_length: 476 uncompressed: false - body: |- - - test-acc-scaleway-export-block-snapshot-16125585319645667481000falsetest-acc-export-block-snapshot-qcow22025-07-07T10:16:51.000Z"0345725c6e663688db0a073eb0aca7e2"196760d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2STANDARD + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "714" + - "476" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - - application/xml + - application/json Date: - - Mon, 07 Jul 2025 10:16:58 GMT - X-Amz-Id-2: - - txg93d563f785b8461bbe4c-00686b9e9a - X-Amz-Request-Id: - - txg93d563f785b8461bbe4c-00686b9e9a + - Thu, 07 Aug 2025 10:03:15 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: + - de58fb49-ffeb-4a22-b13a-c393f07254a4 status: 200 OK code: 200 - duration: 23.421083ms - - id: 41 + duration: 175.351542ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -5884,15 +5829,25 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: api.scaleway.com + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" form: {} headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 42300248-a919-4422-a3a1-68153dc78477 + Amz-Sdk-Request: + - attempt=1; max=3 User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20250807T100315Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -5900,32 +5855,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 328 uncompressed: false - body: '{"created_at":"2025-07-07T10:16:30.790676Z","id":"26430bd6-b781-4941-a64c-bfa2ce580869","last_detached_at":null,"name":"tf-volume-jovial-albattani","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:16:30.790676Z","zone":"fr-par-1"}' + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg1398cb7d2e0d4b928660-00689479e3txg1398cb7d2e0d4b928660-00689479e3/test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "328" Content-Type: - - application/json + - application/xml Date: - - Mon, 07 Jul 2025 10:16: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: - - f884c9ee-5abb-4d9e-9227-83c2d13d7f0e - status: 200 OK - code: 200 - duration: 47.009ms - - id: 42 + - Thu, 07 Aug 2025 10:03:15 GMT + X-Amz-Id-2: + - txg1398cb7d2e0d4b928660-00689479e3 + X-Amz-Request-Id: + - txg1398cb7d2e0d4b928660-00689479e3 + status: 404 Not Found + code: 404 + duration: 111.815334ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -5933,15 +5880,25 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: api.scaleway.com + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" form: {} headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - ca21fddc-6491-495b-948c-8b1038676961 + Amz-Sdk-Request: + - attempt=1; max=3 User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20250807T100315Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -5949,32 +5906,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 714 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: |- + + test-acc-scaleway-export-block-snapshot-65464540229139774011000falsetest-acc-export-block-snapshot-qcow22025-08-07T10:03:04.000Z"0345725c6e663688db0a073eb0aca7e2"196760d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2STANDARD headers: Content-Length: - - "462" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "714" Content-Type: - - application/json + - application/xml Date: - - Mon, 07 Jul 2025 10:16: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: - - acab6a90-b1e6-412c-83f6-0eb879d04782 + - Thu, 07 Aug 2025 10:03:15 GMT + X-Amz-Id-2: + - txgb49bcce0962744f1a672-00689479e3 + X-Amz-Request-Id: + - txgb49bcce0962744f1a672-00689479e3 status: 200 OK code: 200 - duration: 94.857625ms - - id: 43 + duration: 379.183375ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -5982,7 +5933,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5991,16 +5942,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e6c67821-10a5-4a61-bcda-d08666d72dae + - 00041566-da3c-418e-8186-9c42c817f8b8 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101658Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?tagging= + - 20250807T100315Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -6010,22 +5961,22 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg13209ede21aa41cebb1d-00686b9e9atxg13209ede21aa41cebb1d-00686b9e9a/test-acc-scaleway-export-block-snapshot-1612558531964566748test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchTagSetThe TagSet does not existtxg19b8e74a926d4a5b96c1-00689479e3txg19b8e74a926d4a5b96c1-00689479e3/test-acc-scaleway-export-block-snapshot-6546454022913977401test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "357" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:58 GMT + - Thu, 07 Aug 2025 10:03:15 GMT X-Amz-Id-2: - - txg13209ede21aa41cebb1d-00686b9e9a + - txg19b8e74a926d4a5b96c1-00689479e3 X-Amz-Request-Id: - - txg13209ede21aa41cebb1d-00686b9e9a + - txg19b8e74a926d4a5b96c1-00689479e3 status: 404 Not Found code: 404 - duration: 129.631583ms - - id: 44 + duration: 243.327417ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -6033,7 +5984,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6042,16 +5993,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - ee5c61d9-d200-48ad-b12d-c65cfc601ef3 + - 4eee9c7f-644f-4557-92d4-af5cf7d9634b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101658Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?cors= + - 20250807T100315Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -6061,22 +6012,22 @@ interactions: trailer: {} content_length: 296 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxgeea3c28b996944db8ed9-00686b9e9atxgeea3c28b996944db8ed9-00686b9e9a/test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg29a382f241b64da199bb-00689479e3txg29a382f241b64da199bb-00689479e3/test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "296" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:58 GMT + - Thu, 07 Aug 2025 10:03:15 GMT X-Amz-Id-2: - - txgeea3c28b996944db8ed9-00686b9e9a + - txg29a382f241b64da199bb-00689479e3 X-Amz-Request-Id: - - txgeea3c28b996944db8ed9-00686b9e9a + - txg29a382f241b64da199bb-00689479e3 status: 404 Not Found code: 404 - duration: 12.69325ms - - id: 45 + duration: 6.384041ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -6084,7 +6035,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6093,16 +6044,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - b11250ff-18ef-4a7d-9925-80996a485c5c + - 14655d83-9e4c-4d75-b3ca-50027c364133 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101658Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?versioning= + - 20250807T100315Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -6121,15 +6072,15 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:59 GMT + - Thu, 07 Aug 2025 10:03:15 GMT X-Amz-Id-2: - - txgdfde5daf750f48449d9c-00686b9e9b + - txgef86065a0f3c4891aabc-00689479e3 X-Amz-Request-Id: - - txgdfde5daf750f48449d9c-00686b9e9b + - txgef86065a0f3c4891aabc-00689479e3 status: 200 OK code: 200 - duration: 12.679625ms - - id: 46 + duration: 113.215333ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -6137,7 +6088,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6146,16 +6097,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f3ea7d41-0333-47e8-8e93-54c8788f7143 + - 2a5bed51-1f44-4757-9595-7af542c417e0 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101659Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?lifecycle= + - 20250807T100315Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -6165,22 +6116,22 @@ interactions: trailer: {} content_length: 390 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg43f2215a2e9d43ca9ec6-00686b9e9btxg43f2215a2e9d43ca9ec6-00686b9e9b/test-acc-scaleway-export-block-snapshot-1612558531964566748test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgd271bc11a8c34ed1b7d8-00689479e3txgd271bc11a8c34ed1b7d8-00689479e3/test-acc-scaleway-export-block-snapshot-6546454022913977401test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "390" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:16:59 GMT + - Thu, 07 Aug 2025 10:03:15 GMT X-Amz-Id-2: - - txg43f2215a2e9d43ca9ec6-00686b9e9b + - txgd271bc11a8c34ed1b7d8-00689479e3 X-Amz-Request-Id: - - txg43f2215a2e9d43ca9ec6-00686b9e9b + - txgd271bc11a8c34ed1b7d8-00689479e3 status: 404 Not Found code: 404 - duration: 11.593625ms - - id: 47 + duration: 244.312708ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -6188,7 +6139,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6197,16 +6148,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0cfb4e9a-0739-4a14-96e5-377a74747633 + - 4c754158-6e4a-4035-b1b6-978d45e7bfa6 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101659Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2 + - 20250807T100316Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2 method: HEAD response: proto: HTTP/2.0 @@ -6225,19 +6176,19 @@ interactions: Content-Type: - binary/octet-stream Date: - - Mon, 07 Jul 2025 10:16:59 GMT + - Thu, 07 Aug 2025 10:03:16 GMT Etag: - '"0345725c6e663688db0a073eb0aca7e2"' Last-Modified: - - Mon, 07 Jul 2025 10:16:51 GMT + - Thu, 07 Aug 2025 10:03:04 GMT X-Amz-Id-2: - - txgfd09366340ea49eab3b8-00686b9e9b + - txg154adcc37c7c46379346-00689479e4 X-Amz-Request-Id: - - txgfd09366340ea49eab3b8-00686b9e9b + - txg154adcc37c7c46379346-00689479e4 status: 200 OK code: 200 - duration: 16.686958ms - - id: 48 + duration: 212.429084ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -6245,7 +6196,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6254,16 +6205,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 29cbbfa1-4089-4c4b-beb6-bdc4e0e87985 + - 9599de62-99a2-4a87-9df4-d33f24040d35 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101659Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?tagging= + - 20250807T100316Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -6282,15 +6233,15 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:59 GMT + - Thu, 07 Aug 2025 10:03:16 GMT X-Amz-Id-2: - - txg525f6ba5317e4dd1b779-00686b9e9b + - txg220264e2c6a74cc589d1-00689479e4 X-Amz-Request-Id: - - txg525f6ba5317e4dd1b779-00686b9e9b + - txg220264e2c6a74cc589d1-00689479e4 status: 200 OK code: 200 - duration: 12.220709ms - - id: 49 + duration: 260.775625ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -6298,7 +6249,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6307,16 +6258,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0b7bd4f5-6dec-41f0-b61c-cd145fe540c4 + - a3c85097-6d06-4c90-9435-27f501f3908a Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101659Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?acl= + - 20250807T100316Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -6335,15 +6286,15 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:16:59 GMT + - Thu, 07 Aug 2025 10:03:16 GMT X-Amz-Id-2: - - txg193c81526ef24adfafc1-00686b9e9b + - txg191d6437b0f146c0bfc8-00689479e4 X-Amz-Request-Id: - - txg193c81526ef24adfafc1-00686b9e9b + - txg191d6437b0f146c0bfc8-00689479e4 status: 200 OK code: 200 - duration: 10.35625ms - - id: 50 + duration: 242.67675ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -6358,8 +6309,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -6367,20 +6318,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:16:40.121340Z","id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:16:40.121340Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:02:55.987561Z","id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:02:55.987561Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:00 GMT + - Thu, 07 Aug 2025 10:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6388,11 +6339,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acf3eaa7-1b7a-4b80-af4f-d6323e5841b3 + - 5ed1a4b1-3125-4c73-9eee-b07b8b7ce931 status: 200 OK code: 200 - duration: 448.830042ms - - id: 51 + duration: 352.71275ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -6403,13 +6354,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"test-acc-export-block-snapshot-qcow2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' + body: '{"volume_id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"test-acc-export-block-snapshot-qcow2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: @@ -6418,20 +6369,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 475 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "461" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:00 GMT + - Thu, 07 Aug 2025 10:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6439,50 +6390,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bada940e-529f-4d86-aa96-233608067b1b + - 306512b3-0066-4824-a332-2f4300841223 status: 200 OK code: 200 - duration: 433.724167ms - - id: 52 + duration: 353.942125ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 218 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"bucket":"test-acc-scaleway-export-block-snapshot-1612558531964566748","key":"test-acc-export-block-snapshot-qcow2","name":"test-acc-block-snapshot-qcow2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/import-from-object-storage - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 340 + content_length: 475 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.433481Z","id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-07-07T10:17:00.433481Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "340" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:00 GMT + - Thu, 07 Aug 2025 10:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6490,10 +6439,57 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bd93a3e-d74a-4b62-b2df-7f5785f4a809 + - 385e7b98-f5b0-4a90-8c22-a01af59d451e status: 200 OK code: 200 - duration: 525.903209ms + duration: 164.587375ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 07 Aug 2025 10:03: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: + - b835b213-5e18-42c1-bd83-74b3a9062eb9 + status: 204 No Content + code: 204 + duration: 260.524ms - id: 53 request: proto: HTTP/1.1 @@ -6509,8 +6505,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5 method: GET response: proto: HTTP/2.0 @@ -6518,20 +6514,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 461 + content_length: 129 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"d6a3f1f9-8ec8-4b85-8d59-f81d3aa18ff5","type":"not_found"}' headers: Content-Length: - - "461" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:00 GMT + - Thu, 07 Aug 2025 10:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6539,48 +6535,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01e539f8-81f1-433f-b403-cd9460a62885 - status: 200 OK - code: 200 - duration: 239.424166ms + - 3c847ed3-27ea-4fd9-96ed-671f34aa97de + status: 404 Not Found + code: 404 + duration: 43.739667ms - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 218 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"bucket":"test-acc-scaleway-export-block-snapshot-6546454022913977401","key":"test-acc-export-block-snapshot-qcow2","name":"test-acc-block-snapshot-qcow2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/import-from-object-storage + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 340 + content_length: 351 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.433481Z","id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-07-07T10:17:00.433481Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: Content-Length: - - "340" + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:00 GMT + - Thu, 07 Aug 2025 10:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6588,10 +6586,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9290bb4-89bf-43a5-9907-283120a348d4 + - bc5a9e4a-9866-46eb-875c-504fc6ee558a status: 200 OK code: 200 - duration: 156.044583ms + duration: 673.239583ms - id: 55 request: proto: HTTP/1.1 @@ -6607,27 +6605,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 351 uncompressed: false - body: "" + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: + Content-Length: + - "351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:00 GMT + - Thu, 07 Aug 2025 10:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6635,10 +6635,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb0e1194-5db8-4655-9b9f-c16d5f953309 - status: 204 No Content - code: 204 - duration: 249.727083ms + - f97450b6-bb57-404b-8552-9ffbb5b4a5fd + status: 200 OK + code: 200 + duration: 188.381583ms - id: 56 request: proto: HTTP/1.1 @@ -6654,8 +6654,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ea111c72-65d5-408c-997f-cebdd3c8ee17 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: GET response: proto: HTTP/2.0 @@ -6663,20 +6663,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 476 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"ea111c72-65d5-408c-997f-cebdd3c8ee17","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "129" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:00 GMT + - Thu, 07 Aug 2025 10:03:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6684,48 +6684,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aec0ba27-549c-46ea-9cdf-9353ba9228c9 - status: 404 Not Found - code: 404 - duration: 41.115875ms + - 034894e6-135b-4cd9-b7d7-6f3120b7a058 + status: 200 OK + code: 200 + duration: 290.533291ms - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 117 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"bucket":"test-acc-scaleway-export-block-snapshot-6546454022913977401","key":"test-acc-export-block-snapshot-qcow2"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6/export-to-object-storage + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.433481Z","id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.433481Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "341" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:05 GMT + - Thu, 07 Aug 2025 10:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6733,10 +6735,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87305272-027d-4bb4-82ba-dd9b4e95f173 + - b99a7eec-b0dd-4d71-8b33-16806b31e395 status: 200 OK code: 200 - duration: 162.040542ms + duration: 115.458ms - id: 58 request: proto: HTTP/1.1 @@ -6752,8 +6754,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 method: GET response: proto: HTTP/2.0 @@ -6761,20 +6763,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 352 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:05 GMT + - Thu, 07 Aug 2025 10:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6782,10 +6784,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77e4d882-709f-4663-bacc-64f90e8fae68 + - 085e4a36-553b-4946-9454-10f0e597d120 status: 200 OK code: 200 - duration: 193.533542ms + duration: 180.731125ms - id: 59 request: proto: HTTP/1.1 @@ -6801,8 +6803,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: GET response: proto: HTTP/2.0 @@ -6810,20 +6812,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.433481Z","id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.433481Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "341" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:05 GMT + - Thu, 07 Aug 2025 10:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6831,50 +6833,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb5a4207-a405-4407-836d-203d4f15de64 + - ad8f525b-9ec4-4052-b93e-3db8514787ed status: 200 OK code: 200 - duration: 127.558416ms + duration: 119.089541ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 117 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"bucket":"test-acc-scaleway-export-block-snapshot-1612558531964566748","key":"test-acc-export-block-snapshot-qcow2"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170/export-to-object-storage - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 352 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:05 GMT + - Thu, 07 Aug 2025 10:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6882,10 +6882,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e76250f8-91bd-4fc2-bb6a-de1930df8e63 + - 9afcbe06-edaa-4598-a79f-83ed099e9fbb status: 200 OK code: 200 - duration: 101.7425ms + duration: 85.949833ms - id: 61 request: proto: HTTP/1.1 @@ -6897,13 +6897,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-block-volume-from-snapshot","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_snapshot":{"size":null,"snapshot_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843"},"tags":[]}' + body: '{"name":"test-block-volume-from-snapshot","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_snapshot":{"size":null,"snapshot_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3"},"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: @@ -6912,20 +6912,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 448 + content_length: 462 uncompressed: false - body: '{"created_at":"2025-07-07T10:17:06.030094Z","id":"6e5e91d2-7055-4ce5-b841-109eec8a9d3f","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:17:06.030094Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:03:23.364254Z","id":"e044c7aa-5248-4cb1-b858-415e57e47171","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:03:23.364254Z","zone":"fr-par-1"}' headers: Content-Length: - - "448" + - "462" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:06 GMT + - Thu, 07 Aug 2025 10:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6933,10 +6933,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57229440-33cf-4621-a3e2-c7ef769a005f + - c5f28bc1-8abb-45dd-8335-b604927b8318 status: 200 OK code: 200 - duration: 102.549542ms + duration: 157.344125ms - id: 62 request: proto: HTTP/1.1 @@ -6952,8 +6952,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e5e91d2-7055-4ce5-b841-109eec8a9d3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e044c7aa-5248-4cb1-b858-415e57e47171 method: GET response: proto: HTTP/2.0 @@ -6961,20 +6961,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 448 + content_length: 462 uncompressed: false - body: '{"created_at":"2025-07-07T10:17:06.030094Z","id":"6e5e91d2-7055-4ce5-b841-109eec8a9d3f","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:17:06.030094Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:03:23.364254Z","id":"e044c7aa-5248-4cb1-b858-415e57e47171","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:03:23.364254Z","zone":"fr-par-1"}' headers: Content-Length: - - "448" + - "462" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:06 GMT + - Thu, 07 Aug 2025 10:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6982,10 +6982,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d801cb5-187a-4c3b-b649-b82bab959344 + - 4f73fd63-36f5-4072-9c46-8e0bd9806291 status: 200 OK code: 200 - duration: 41.809667ms + duration: 40.074375ms - id: 63 request: proto: HTTP/1.1 @@ -7001,8 +7001,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e044c7aa-5248-4cb1-b858-415e57e47171 method: GET response: proto: HTTP/2.0 @@ -7010,20 +7010,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 463 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:03:23.364254Z","id":"e044c7aa-5248-4cb1-b858-415e57e47171","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:03:23.364254Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:06 GMT + - Thu, 07 Aug 2025 10:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7031,10 +7031,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd9f74c3-acdd-405e-acdf-3b90ee0178c9 + - 6f461ff4-e75c-4615-9aae-9c8ac529cded status: 200 OK code: 200 - duration: 188.833458ms + duration: 41.965375ms - id: 64 request: proto: HTTP/1.1 @@ -7050,8 +7050,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e5e91d2-7055-4ce5-b841-109eec8a9d3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e044c7aa-5248-4cb1-b858-415e57e47171 method: GET response: proto: HTTP/2.0 @@ -7059,20 +7059,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-07-07T10:17:06.030094Z","id":"6e5e91d2-7055-4ce5-b841-109eec8a9d3f","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:17:06.030094Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:03:23.364254Z","id":"e044c7aa-5248-4cb1-b858-415e57e47171","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:03:23.364254Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:11 GMT + - Thu, 07 Aug 2025 10:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7080,10 +7080,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67355251-f1b3-42e6-b704-90293e6fed77 + - a88a9225-00f4-4d48-b0fb-6f4011f9b1aa status: 200 OK code: 200 - duration: 43.011959ms + duration: 35.717458ms - id: 65 request: proto: HTTP/1.1 @@ -7099,8 +7099,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e5e91d2-7055-4ce5-b841-109eec8a9d3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: GET response: proto: HTTP/2.0 @@ -7108,20 +7108,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 476 uncompressed: false - body: '{"created_at":"2025-07-07T10:17:06.030094Z","id":"6e5e91d2-7055-4ce5-b841-109eec8a9d3f","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:17:06.030094Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:11 GMT + - Thu, 07 Aug 2025 10:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7129,10 +7129,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0881077-59b8-4242-9da0-98cba1da216c + - e951473f-73fb-45fd-a98d-c82ec55db57f status: 200 OK code: 200 - duration: 44.965208ms + duration: 495.653667ms - id: 66 request: proto: HTTP/1.1 @@ -7148,8 +7148,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 method: GET response: proto: HTTP/2.0 @@ -7157,20 +7157,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 352 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"exporting","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:11 GMT + - Thu, 07 Aug 2025 10:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7178,10 +7178,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6f9b814-2a94-4979-8f46-b1c8d5e558e6 + - 50986e4f-040c-4c5d-8430-d20d565af898 status: 200 OK code: 200 - duration: 111.310875ms + duration: 537.295417ms - id: 67 request: proto: HTTP/1.1 @@ -7197,8 +7197,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: GET response: proto: HTTP/2.0 @@ -7206,20 +7206,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:16 GMT + - Thu, 07 Aug 2025 10:03:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7227,10 +7227,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8893adf-caea-487e-a751-33903dc1bc8a + - 57771354-9581-4980-a886-5640700679f8 status: 200 OK code: 200 - duration: 133.169042ms + duration: 647.176208ms - id: 68 request: proto: HTTP/1.1 @@ -7246,8 +7246,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: GET response: proto: HTTP/2.0 @@ -7255,20 +7255,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:16 GMT + - Thu, 07 Aug 2025 10:03:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7276,10 +7276,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7a0458d-a257-4463-acf1-ff9ab6a9b00a + - 7b670328-f0b0-440a-873b-9931d2a4d1a3 status: 200 OK code: 200 - duration: 85.620292ms + duration: 338.8695ms - id: 69 request: proto: HTTP/1.1 @@ -7288,7 +7288,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -7297,18 +7297,18 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 962163b5-a49c-466e-a194-cb1075f445b2 + - 310e7d23-a85a-45b5-81aa-f4eb3a388d13 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,b,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,b,e X-Amz-Checksum-Mode: - ENABLED X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101716Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?x-id=GetObject + - 20250807T100334Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?x-id=GetObject method: GET response: proto: HTTP/2.0 @@ -11075,18 +11075,18 @@ interactions: Content-Type: - binary/octet-stream Date: - - Mon, 07 Jul 2025 10:17:16 GMT + - Thu, 07 Aug 2025 10:03:34 GMT Etag: - '"0345725c6e663688db0a073eb0aca7e2"' Last-Modified: - - Mon, 07 Jul 2025 10:17:11 GMT + - Thu, 07 Aug 2025 10:03:29 GMT X-Amz-Id-2: - - txg3cda1f4e2cc0461b9415-00686b9eac + - txgb3366bc00900489eb6e0-00689479f6 X-Amz-Request-Id: - - txg3cda1f4e2cc0461b9415-00686b9eac + - txgb3366bc00900489eb6e0-00689479f6 status: 200 OK code: 200 - duration: 51.235709ms + duration: 238.0175ms - id: 70 request: proto: HTTP/1.1 @@ -11102,8 +11102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 method: GET response: proto: HTTP/2.0 @@ -11111,20 +11111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 352 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.433481Z","id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.433481Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: Content-Length: - - "341" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:16 GMT + - Thu, 07 Aug 2025 10:03:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11132,10 +11132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2010bbc4-89c4-48c2-b4cd-889c6f74479b + - 5834933c-a26e-4786-8211-66a5b5badbe1 status: 200 OK code: 200 - duration: 91.217166ms + duration: 402.847125ms - id: 71 request: proto: HTTP/1.1 @@ -11144,25 +11144,15 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: api.scaleway.com remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - fd37c596-bc6a-4dc5-b3b0-0bf23f70e0bd - Amz-Sdk-Request: - - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?acl= + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 method: GET response: proto: HTTP/2.0 @@ -11170,25 +11160,31 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 698 + content_length: 424 uncompressed: false - body: |- - - d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2FULL_CONTROL + body: '{"created_at":"2025-08-07T10:02:48.022211Z","id":"c9a7d38e-4107-4320-9248-c4cb1e918074","last_detached_at":null,"name":"tf-volume-trusting-germain","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:02:48.022211Z","zone":"fr-par-1"}' headers: Content-Length: - - "698" + - "424" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - - text/xml; charset=utf-8 + - application/json Date: - - Mon, 07 Jul 2025 10:17:17 GMT - X-Amz-Id-2: - - txg61dd3b74cac3470e92be-00686b9ead - X-Amz-Request-Id: - - txg61dd3b74cac3470e92be-00686b9ead + - Thu, 07 Aug 2025 10:03:35 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: + - 29b98f40-584f-461c-afcb-280fc6157b1b status: 200 OK code: 200 - duration: 19.265041ms + duration: 34.266041ms - id: 72 request: proto: HTTP/1.1 @@ -11197,7 +11193,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11206,16 +11202,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 4ca7eb32-135f-43ba-bc40-767a2dbb7601 + - 487ac4f0-badf-4058-aca9-0b9011909e58 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?object-lock= + - 20250807T100335Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -11223,23 +11219,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 328 + content_length: 698 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg03c45e54c8f849108780-00686b9eadtxg03c45e54c8f849108780-00686b9ead/test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: |- + + d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2FULL_CONTROL headers: Content-Length: - - "328" + - "698" Content-Type: - - application/xml + - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:35 GMT X-Amz-Id-2: - - txg03c45e54c8f849108780-00686b9ead + - txgb69607ebafec438b8582-00689479f7 X-Amz-Request-Id: - - txg03c45e54c8f849108780-00686b9ead - status: 404 Not Found - code: 404 - duration: 10.017375ms + - txgb69607ebafec438b8582-00689479f7 + status: 200 OK + code: 200 + duration: 215.322083ms - id: 73 request: proto: HTTP/1.1 @@ -11248,7 +11246,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11257,16 +11255,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 8893b41e-9499-462a-8a14-7bb2ca24e72e + - 3dbf8d6f-b66f-43f4-a997-5d3ef85d927b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/ + - 20250807T100335Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -11274,25 +11272,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 714 + content_length: 328 uncompressed: false - body: |- - - test-acc-scaleway-export-block-snapshot-16125585319645667481000falsetest-acc-export-block-snapshot-qcow22025-07-07T10:17:11.000Z"0345725c6e663688db0a073eb0aca7e2"196760d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2STANDARD + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg6e125a557bc445aaa90f-00689479f7txg6e125a557bc445aaa90f-00689479f7/test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - - "714" + - "328" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:35 GMT X-Amz-Id-2: - - txg74558fa1a39a48beabff-00686b9ead + - txg6e125a557bc445aaa90f-00689479f7 X-Amz-Request-Id: - - txg74558fa1a39a48beabff-00686b9ead - status: 200 OK - code: 200 - duration: 17.511583ms + - txg6e125a557bc445aaa90f-00689479f7 + status: 404 Not Found + code: 404 + duration: 120.662125ms - id: 74 request: proto: HTTP/1.1 @@ -11301,15 +11297,25 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: api.scaleway.com + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" form: {} headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - 55b9c9fa-7a9a-4d39-80b8-6ffa9e7f78e6 + Amz-Sdk-Request: + - attempt=1; max=3 User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20250807T100335Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -11317,31 +11323,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 714 uncompressed: false - body: '{"created_at":"2025-07-07T10:16:30.790676Z","id":"26430bd6-b781-4941-a64c-bfa2ce580869","last_detached_at":null,"name":"tf-volume-jovial-albattani","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:16:30.790676Z","zone":"fr-par-1"}' + body: |- + + test-acc-scaleway-export-block-snapshot-65464540229139774011000falsetest-acc-export-block-snapshot-qcow22025-08-07T10:03:29.000Z"0345725c6e663688db0a073eb0aca7e2"196760d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2d3520a52-2c75-4ba0-bda8-82dd087f07f2:d3520a52-2c75-4ba0-bda8-82dd087f07f2STANDARD headers: Content-Length: - - "410" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' + - "714" Content-Type: - - application/json + - application/xml Date: - - Mon, 07 Jul 2025 10:17: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: - - db5d7a10-a04d-4f3d-aa97-89e980bf8db3 + - Thu, 07 Aug 2025 10:03:35 GMT + X-Amz-Id-2: + - txgb64e0912d3dc4f00b111-00689479f7 + X-Amz-Request-Id: + - txgb64e0912d3dc4f00b111-00689479f7 status: 200 OK code: 200 - duration: 48.474666ms + duration: 165.379583ms - id: 75 request: proto: HTTP/1.1 @@ -11350,7 +11350,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11359,16 +11359,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 49283c46-ae76-475c-b3fd-fc9a6c139afe + - af13666d-0f9b-484f-ba7d-30d1128d3e30 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?tagging= + - 20250807T100336Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -11378,21 +11378,21 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxgc32b841f422c451bb6de-00686b9eadtxgc32b841f422c451bb6de-00686b9ead/test-acc-scaleway-export-block-snapshot-1612558531964566748test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchTagSetThe TagSet does not existtxg25d2ac907c9a4ed49ad7-00689479f8txg25d2ac907c9a4ed49ad7-00689479f8/test-acc-scaleway-export-block-snapshot-6546454022913977401test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "357" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:36 GMT X-Amz-Id-2: - - txgc32b841f422c451bb6de-00686b9ead + - txg25d2ac907c9a4ed49ad7-00689479f8 X-Amz-Request-Id: - - txgc32b841f422c451bb6de-00686b9ead + - txg25d2ac907c9a4ed49ad7-00689479f8 status: 404 Not Found code: 404 - duration: 8.278791ms + duration: 213.127958ms - id: 76 request: proto: HTTP/1.1 @@ -11401,7 +11401,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11410,16 +11410,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f254b9b4-9b57-436c-a844-0feb23d3e787 + - feee051f-522f-46c6-a69e-53b5f1d52270 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?cors= + - 20250807T100336Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -11429,21 +11429,21 @@ interactions: trailer: {} content_length: 296 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg8407eb36b93e4861bae8-00686b9eadtxg8407eb36b93e4861bae8-00686b9ead/test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg201a9de5b3754fa88919-00689479f8txg201a9de5b3754fa88919-00689479f8/test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "296" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:36 GMT X-Amz-Id-2: - - txg8407eb36b93e4861bae8-00686b9ead + - txg201a9de5b3754fa88919-00689479f8 X-Amz-Request-Id: - - txg8407eb36b93e4861bae8-00686b9ead + - txg201a9de5b3754fa88919-00689479f8 status: 404 Not Found code: 404 - duration: 13.977208ms + duration: 116.357667ms - id: 77 request: proto: HTTP/1.1 @@ -11452,7 +11452,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11461,16 +11461,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 5838f40b-a8b8-4b97-b23f-a1dbe32b9f90 + - df3618a3-a541-4fc4-b280-054715b47c07 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?versioning= + - 20250807T100336Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -11489,14 +11489,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:36 GMT X-Amz-Id-2: - - txgf67b48fc5d714fc7b886-00686b9ead + - txg23fe9bc8023d46f98fec-00689479f8 X-Amz-Request-Id: - - txgf67b48fc5d714fc7b886-00686b9ead + - txg23fe9bc8023d46f98fec-00689479f8 status: 200 OK code: 200 - duration: 17.980917ms + duration: 123.246542ms - id: 78 request: proto: HTTP/1.1 @@ -11505,7 +11505,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11514,16 +11514,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - ff000214-0756-4514-9ec3-59e6cd8479a6 + - 606314d2-a4f2-43b8-8bcd-7012bd302233 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/?lifecycle= + - 20250807T100336Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -11533,21 +11533,21 @@ interactions: trailer: {} content_length: 390 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg2bd345dd49ea40e8b753-00686b9eadtxg2bd345dd49ea40e8b753-00686b9ead/test-acc-scaleway-export-block-snapshot-1612558531964566748test-acc-scaleway-export-block-snapshot-1612558531964566748 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg0e1d17a3d1f546418689-00689479f8txg0e1d17a3d1f546418689-00689479f8/test-acc-scaleway-export-block-snapshot-6546454022913977401test-acc-scaleway-export-block-snapshot-6546454022913977401 headers: Content-Length: - "390" Content-Type: - application/xml Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:36 GMT X-Amz-Id-2: - - txg2bd345dd49ea40e8b753-00686b9ead + - txg0e1d17a3d1f546418689-00689479f8 X-Amz-Request-Id: - - txg2bd345dd49ea40e8b753-00686b9ead + - txg0e1d17a3d1f546418689-00689479f8 status: 404 Not Found code: 404 - duration: 11.071833ms + duration: 228.745125ms - id: 79 request: proto: HTTP/1.1 @@ -11556,7 +11556,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11565,16 +11565,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 61425c63-cf99-488d-b1e5-157f8c6ff429 + - 35af44d1-0053-49ae-9aa1-05b963b42fc9 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2 + - 20250807T100336Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2 method: HEAD response: proto: HTTP/2.0 @@ -11593,18 +11593,18 @@ interactions: Content-Type: - binary/octet-stream Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:36 GMT Etag: - '"0345725c6e663688db0a073eb0aca7e2"' Last-Modified: - - Mon, 07 Jul 2025 10:17:11 GMT + - Thu, 07 Aug 2025 10:03:29 GMT X-Amz-Id-2: - - txgd9fee6900e894f9eabd2-00686b9ead + - txgee0d404907e442279f2d-00689479f8 X-Amz-Request-Id: - - txgd9fee6900e894f9eabd2-00686b9ead + - txgee0d404907e442279f2d-00689479f8 status: 200 OK code: 200 - duration: 6.922333ms + duration: 235.711708ms - id: 80 request: proto: HTTP/1.1 @@ -11613,7 +11613,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11622,16 +11622,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - d1a1cd44-2d34-4b96-b590-bc47e3452cd0 + - 1d9cbf4c-7b19-4fdd-9330-608d58bbfede Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?tagging= + - 20250807T100337Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -11650,14 +11650,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:37 GMT X-Amz-Id-2: - - txg0c1cadaa98ab46bf9835-00686b9ead + - txg80351d8ab8954d80b640-00689479f9 X-Amz-Request-Id: - - txg0c1cadaa98ab46bf9835-00686b9ead + - txg80351d8ab8954d80b640-00689479f9 status: 200 OK code: 200 - duration: 16.256125ms + duration: 6.363041ms - id: 81 request: proto: HTTP/1.1 @@ -11666,7 +11666,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -11675,16 +11675,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - dbb8b408-3809-4fa9-970b-f83ed692c566 + - 7f7a8a2b-b363-4219-884f-a3573e466c80 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101717Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?acl= + - 20250807T100337Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -11703,14 +11703,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:37 GMT X-Amz-Id-2: - - txga86acf7fa38b48e48e9f-00686b9ead + - txge2cedd304af2499b9e03-00689479f9 X-Amz-Request-Id: - - txga86acf7fa38b48e48e9f-00686b9ead + - txge2cedd304af2499b9e03-00689479f9 status: 200 OK code: 200 - duration: 14.013292ms + duration: 237.88675ms - id: 82 request: proto: HTTP/1.1 @@ -11726,8 +11726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 method: GET response: proto: HTTP/2.0 @@ -11735,20 +11735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 352 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11756,10 +11756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df78a3d3-e782-4233-99cf-89a6a353802e + - e59cc68d-c5f3-49f3-b44c-89cc8feab2fe status: 200 OK code: 200 - duration: 181.22875ms + duration: 607.776625ms - id: 83 request: proto: HTTP/1.1 @@ -11775,8 +11775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: GET response: proto: HTTP/2.0 @@ -11784,20 +11784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.433481Z","id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.433481Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "341" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11805,10 +11805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae2ad242-597b-454b-b1f0-b7cd14e5d41a + - 522cd487-10be-4fcb-be0a-ebe6b0455daa status: 200 OK code: 200 - duration: 183.101208ms + duration: 607.862209ms - id: 84 request: proto: HTTP/1.1 @@ -11824,8 +11824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e5e91d2-7055-4ce5-b841-109eec8a9d3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e044c7aa-5248-4cb1-b858-415e57e47171 method: GET response: proto: HTTP/2.0 @@ -11833,20 +11833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-07-07T10:17:06.030094Z","id":"6e5e91d2-7055-4ce5-b841-109eec8a9d3f","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:17:06.030094Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:03:23.364254Z","id":"e044c7aa-5248-4cb1-b858-415e57e47171","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:03:23.364254Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:17 GMT + - Thu, 07 Aug 2025 10:03:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11854,10 +11854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 494691bf-5cdf-4cb2-b519-71b7ca8d01c5 + - d37548a3-ef4a-4a90-9360-1cc35fd8ba05 status: 200 OK code: 200 - duration: 43.68625ms + duration: 38.438333ms - id: 85 request: proto: HTTP/1.1 @@ -11873,8 +11873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e5e91d2-7055-4ce5-b841-109eec8a9d3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 method: GET response: proto: HTTP/2.0 @@ -11882,20 +11882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 352 uncompressed: false - body: '{"created_at":"2025-07-07T10:17:06.030094Z","id":"6e5e91d2-7055-4ce5-b841-109eec8a9d3f","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:17:06.030094Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:18 GMT + - Thu, 07 Aug 2025 10:03:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11903,10 +11903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d303bee-c72e-4392-ac62-c4180793b4e9 + - 03df6aa4-f2b3-4775-9435-236354a457d1 status: 200 OK code: 200 - duration: 54.008375ms + duration: 443.974917ms - id: 86 request: proto: HTTP/1.1 @@ -11922,27 +11922,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e5e91d2-7055-4ce5-b841-109eec8a9d3f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e044c7aa-5248-4cb1-b858-415e57e47171 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 463 uncompressed: false - body: "" + body: '{"created_at":"2025-08-07T10:03:23.364254Z","id":"e044c7aa-5248-4cb1-b858-415e57e47171","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:03:23.364254Z","zone":"fr-par-1"}' headers: + Content-Length: + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:18 GMT + - Thu, 07 Aug 2025 10:03:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11950,10 +11952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 432387e7-f248-4174-84d7-192e0f80eb88 - status: 204 No Content - code: 204 - duration: 69.518375ms + - f55ff573-467f-45ce-8e17-9319b8e3dc7f + status: 200 OK + code: 200 + duration: 124.839125ms - id: 87 request: proto: HTTP/1.1 @@ -11969,29 +11971,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e5e91d2-7055-4ce5-b841-109eec8a9d3f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e044c7aa-5248-4cb1-b858-415e57e47171 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"6e5e91d2-7055-4ce5-b841-109eec8a9d3f","type":"not_found"}' + body: "" headers: - Content-Length: - - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11999,10 +11999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa5d8741-fc93-4a25-94be-4b35f4b3a791 - status: 404 Not Found - code: 404 - duration: 43.615125ms + - 0c82abb7-5303-4de2-979c-6eaa7fede577 + status: 204 No Content + code: 204 + duration: 78.553ms - id: 88 request: proto: HTTP/1.1 @@ -12018,8 +12018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e044c7aa-5248-4cb1-b858-415e57e47171 method: GET response: proto: HTTP/2.0 @@ -12027,20 +12027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 127 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.053128Z","id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"26430bd6-b781-4941-a64c-bfa2ce580869","name":"tf-volume-jovial-albattani","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.053128Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"e044c7aa-5248-4cb1-b858-415e57e47171","type":"not_found"}' headers: Content-Length: - - "462" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12048,10 +12048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34abf169-6162-4507-b7d2-4a2788071b35 - status: 200 OK - code: 200 - duration: 167.339667ms + - 454ec6ed-fa82-4022-8028-c5293ed2aeed + status: 404 Not Found + code: 404 + duration: 44.06275ms - id: 89 request: proto: HTTP/1.1 @@ -12067,8 +12067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: GET response: proto: HTTP/2.0 @@ -12076,20 +12076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 476 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-07T10:17:00.433481Z","id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-07-07T10:17:00.433481Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.193823Z","id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","name":"test-acc-export-block-snapshot-qcow2","parent_volume":{"id":"c9a7d38e-4107-4320-9248-c4cb1e918074","name":"tf-volume-trusting-germain","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.193823Z","zone":"fr-par-1"}' headers: Content-Length: - - "341" + - "476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12097,10 +12097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1314d7c6-366e-4695-9082-99fd7cab46ae + - 0110873c-6869-4c88-9abc-46362e3c8399 status: 200 OK code: 200 - duration: 137.764416ms + duration: 861.901417ms - id: 90 request: proto: HTTP/1.1 @@ -12116,27 +12116,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 352 uncompressed: false - body: "" + body: '{"class":"sbs","created_at":"2025-08-07T10:03:17.702726Z","id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","name":"test-acc-block-snapshot-qcow2","parent_volume":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:03:17.702726Z","zone":"fr-par-1"}' headers: + Content-Length: + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12144,10 +12146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9808ebaa-bd8d-44ec-95df-8f121bdadab4 - status: 204 No Content - code: 204 - duration: 162.317125ms + - a3277e2b-3891-4ce7-8e92-0509e58674e0 + status: 200 OK + code: 200 + duration: 679.083458ms - id: 91 request: proto: HTTP/1.1 @@ -12163,29 +12165,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","type":"not_found"}' + body: "" headers: - Content-Length: - - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12193,10 +12193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd82a166-6274-44db-8eea-7764d33e340d - status: 404 Not Found - code: 404 - duration: 39.355542ms + - 28234e9d-50ed-4c93-8513-196bd47ddff3 + status: 204 No Content + code: 204 + duration: 420.782416ms - id: 92 request: proto: HTTP/1.1 @@ -12212,29 +12212,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-07-07T10:16:30.790676Z","id":"26430bd6-b781-4941-a64c-bfa2ce580869","last_detached_at":null,"name":"tf-volume-jovial-albattani","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-07T10:16:30.790676Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "410" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12242,10 +12240,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7020c55f-9441-4d6c-ba41-ec76ee796ba4 - status: 200 OK - code: 200 - duration: 49.979083ms + - 6f1eef84-3ced-4626-8b09-d050f1d0b577 + status: 204 No Content + code: 204 + duration: 494.418167ms - id: 93 request: proto: HTTP/1.1 @@ -12261,27 +12259,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 129 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","type":"not_found"}' headers: + Content-Length: + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12289,10 +12289,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de0f2eb4-e069-4111-beb8-a654fafd108b - status: 204 No Content - code: 204 - duration: 124.912166ms + - 5ef661eb-961d-46fc-864a-e564ab60f679 + status: 404 Not Found + code: 404 + duration: 33.678459ms - id: 94 request: proto: HTTP/1.1 @@ -12308,8 +12308,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: GET response: proto: HTTP/2.0 @@ -12319,7 +12319,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","type":"not_found"}' headers: Content-Length: - "129" @@ -12328,9 +12328,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12338,10 +12338,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ac1289e-104d-497f-abb3-4b9590a1e283 + - fcb659df-ab40-43f5-962d-ebcca6eaf522 status: 404 Not Found code: 404 - duration: 41.684167ms + duration: 37.405833ms - id: 95 request: proto: HTTP/1.1 @@ -12357,27 +12357,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 424 uncompressed: false - body: "" + body: '{"created_at":"2025-08-07T10:02:48.022211Z","id":"c9a7d38e-4107-4320-9248-c4cb1e918074","last_detached_at":null,"name":"tf-volume-trusting-germain","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:02:48.022211Z","zone":"fr-par-1"}' headers: + Content-Length: + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12385,10 +12387,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dd504ab-18bd-444b-8c75-0092d4d8edc2 - status: 204 No Content - code: 204 - duration: 63.098917ms + - 4f14f4df-3720-460a-88f3-5e2867860298 + status: 200 OK + code: 200 + duration: 50.403709ms - id: 96 request: proto: HTTP/1.1 @@ -12397,25 +12399,15 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: api.scaleway.com remote_addr: "" request_uri: "" body: "" form: {} headers: - Accept-Encoding: - - identity - Amz-Sdk-Invocation-Id: - - 80a38fbb-f432-4568-a643-791bdc84ab20 - Amz-Sdk-Request: - - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e - X-Amz-Content-Sha256: - - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 - X-Amz-Date: - - 20250707T101719Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?x-id=DeleteObject + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 method: DELETE response: proto: HTTP/2.0 @@ -12427,15 +12419,25 @@ interactions: uncompressed: false body: "" headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT - X-Amz-Id-2: - - txg39482f9af0f142eabb79-00686b9eaf - X-Amz-Request-Id: - - txg39482f9af0f142eabb79-00686b9eaf + - Thu, 07 Aug 2025 10:03:40 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: + - 82868cab-67c2-4ee5-b9e4-b98a5c31b367 status: 204 No Content code: 204 - duration: 15.006ms + duration: 80.025959ms - id: 97 request: proto: HTTP/1.1 @@ -12451,8 +12453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/26430bd6-b781-4941-a64c-bfa2ce580869 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9a7d38e-4107-4320-9248-c4cb1e918074 method: GET response: proto: HTTP/2.0 @@ -12462,7 +12464,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"26430bd6-b781-4941-a64c-bfa2ce580869","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"c9a7d38e-4107-4320-9248-c4cb1e918074","type":"not_found"}' headers: Content-Length: - "127" @@ -12471,9 +12473,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12481,10 +12483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99d692c1-5192-4675-925c-a8ab662a5b9c + - bfce10a8-8535-4e00-95df-4b5f22b02000 status: 404 Not Found code: 404 - duration: 39.738167ms + duration: 35.656166ms - id: 98 request: proto: HTTP/1.1 @@ -12493,7 +12495,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -12502,16 +12504,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 74b111ec-7ec1-418b-8804-b052875b70b3 + - eae5608a-8863-4435-a0b7-f5c3dc160e27 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.36.5 ua/2.1 os/macos lang/go#1.24.1 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.82.0 m/E,e + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250707T101719Z - url: https://test-acc-scaleway-export-block-snapshot-1612558531964566748.s3.fr-par.scw.cloud/ + - 20250807T100340Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/test-acc-export-block-snapshot-qcow2?x-id=DeleteObject method: DELETE response: proto: HTTP/2.0 @@ -12524,15 +12526,62 @@ interactions: body: "" headers: Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:40 GMT X-Amz-Id-2: - - txg1fd687bf8a184b0a92f7-00686b9eaf + - txgf361d4f2cf2346aeb169-00689479fc X-Amz-Request-Id: - - txg1fd687bf8a184b0a92f7-00686b9eaf + - txgf361d4f2cf2346aeb169-00689479fc status: 204 No Content code: 204 - duration: 536.077958ms + duration: 440.269375ms - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - identity + Amz-Sdk-Invocation-Id: + - bb788910-6f97-42c7-a3c8-1909b6e0027e + Amz-Sdk-Request: + - attempt=1; max=3 + User-Agent: + - aws-sdk-go-v2/1.37.1 ua/2.1 os/macos lang/go#1.24.5 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.85.1 m/E,e + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20250807T100340Z + url: https://test-acc-scaleway-export-block-snapshot-6546454022913977401.s3.fr-par.scw.cloud/ + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Date: + - Thu, 07 Aug 2025 10:03:40 GMT + X-Amz-Id-2: + - txg5a9ca2ef65814b2f806a-00689479fc + X-Amz-Request-Id: + - txg5a9ca2ef65814b2f806a-00689479fc + status: 204 No Content + code: 204 + duration: 484.972041ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -12547,8 +12596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/d28ea63d-c2e3-4570-a59a-f9d4fec47170 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f36d62ac-dacd-482a-9277-da9dbcce1da6 method: DELETE response: proto: HTTP/2.0 @@ -12558,7 +12607,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"d28ea63d-c2e3-4570-a59a-f9d4fec47170","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f36d62ac-dacd-482a-9277-da9dbcce1da6","type":"not_found"}' headers: Content-Length: - "129" @@ -12567,9 +12616,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:19 GMT + - Thu, 07 Aug 2025 10:03:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12577,11 +12626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73cd97ee-6cc9-48a9-8db9-694db5876385 + - 4b18abd2-5a29-4190-9222-9897340fbf08 status: 404 Not Found code: 404 - duration: 54.857458ms - - id: 100 + duration: 63.666667ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -12596,8 +12645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ddf516a2-5224-45e4-b9e3-80e8ca4d7843 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3 method: DELETE response: proto: HTTP/2.0 @@ -12607,7 +12656,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"ddf516a2-5224-45e4-b9e3-80e8ca4d7843","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"b4db5bd7-bc45-4c4a-bf0a-00dea4be7de3","type":"not_found"}' headers: Content-Length: - "129" @@ -12616,9 +12665,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 07 Jul 2025 10:17:20 GMT + - Thu, 07 Aug 2025 10:03:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -12626,7 +12675,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7aedfaed-76db-4b92-84e6-718ccc9ef24b + - fbe2a38d-afce-4cc5-86cf-36193cf9a15b status: 404 Not Found code: 404 - duration: 79.887417ms + duration: 64.3145ms From 827d627697319eddb024e55d8e04baba5d36f19c Mon Sep 17 00:00:00 2001 From: Laure Masson Date: Thu, 7 Aug 2025 12:14:41 +0200 Subject: [PATCH 6/9] update cassettes --- internal/services/block/helpers_block.go | 1 + ...lume-from-snapshot-with-size.cassette.yaml | 562 +++-- .../volume-from-snapshot.cassette.yaml | 473 ++-- internal/services/block/volume.go | 2 + ...olume-from-external-snapshot.cassette.yaml | 2084 ++++++++--------- 5 files changed, 1587 insertions(+), 1535 deletions(-) diff --git a/internal/services/block/helpers_block.go b/internal/services/block/helpers_block.go index 572d8f78e6..9f18e1d57e 100644 --- a/internal/services/block/helpers_block.go +++ b/internal/services/block/helpers_block.go @@ -71,6 +71,7 @@ func customDiffSnapshot(key string) schema.CustomizeDiffFunc { if (httperrors.Is403(err) || httperrors.Is404(err)) && newValue == "" { return nil } + return diff.ForceNew(key) } } diff --git a/internal/services/block/testdata/volume-from-snapshot-with-size.cassette.yaml b/internal/services/block/testdata/volume-from-snapshot-with-size.cassette.yaml index 48d4183383..bd48f9b579 100644 --- a/internal/services/block/testdata/volume-from-snapshot-with-size.cassette.yaml +++ b/internal/services/block/testdata/volume-from-snapshot-with-size.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 433 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:42.993867Z","id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:42.993867Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:39.317656Z","id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:39.317656Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:43 GMT + - Thu, 07 Aug 2025 10:13:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d82a2931-9735-42e9-a130-3b2f4bdca804 + - 6f932bf7-2b4c-48bc-b93c-51def838792a status: 200 OK code: 200 - duration: 142.684875ms + duration: 538.859458ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a1ebf7a-8cd2-4cee-bab4-f82af444cc51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d2f1700c-ca85-43af-841f-1d1b2fbaf0b5 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 433 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:42.993867Z","id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:42.993867Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:39.317656Z","id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:39.317656Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:43 GMT + - Thu, 07 Aug 2025 10:13:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16a02408-9b99-47ea-a0a9-d5786bea9311 + - bee997d7-edb0-41c7-9b6b-cde8b867da01 status: 200 OK code: 200 - duration: 40.451042ms + duration: 39.982875ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a1ebf7a-8cd2-4cee-bab4-f82af444cc51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d2f1700c-ca85-43af-841f-1d1b2fbaf0b5 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 434 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:42.993867Z","id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:42.993867Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:39.317656Z","id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:39.317656Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:48 GMT + - Thu, 07 Aug 2025 10:13:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1329c32-4708-43bb-bf6b-8b72cfd24e8a + - 8650e695-6230-4a4d-9172-027b3de08c54 status: 200 OK code: 200 - duration: 51.829583ms + duration: 51.295ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a1ebf7a-8cd2-4cee-bab4-f82af444cc51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d2f1700c-ca85-43af-841f-1d1b2fbaf0b5 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 434 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:42.993867Z","id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:42.993867Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:39.317656Z","id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:39.317656Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:48 GMT + - Thu, 07 Aug 2025 10:13:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0b1e7d8-ddac-41a5-859b-adf5042fcda1 + - 22cd29ac-5ede-4a3b-9f02-08a5ff51d4f8 status: 200 OK code: 200 - duration: 41.429792ms + duration: 45.531166ms - id: 4 request: proto: HTTP/1.1 @@ -210,13 +210,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","name":"test-block-volume-from-snapshot","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' + body: '{"volume_id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 480 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-04T14:32:48.281665Z","id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","name":"test-block-volume-from-snapshot","parent_volume":{"id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-07-04T14:32:48.281665Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:13:44.614770Z","id":"3636982a-0637-423a-88f2-a8dc4446d926","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T10:13:44.614770Z","zone":"fr-par-1"}' headers: Content-Length: - - "466" + - "480" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:48 GMT + - Thu, 07 Aug 2025 10:13:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de65424c-7be1-461c-b4bb-e01438cedc06 + - d6ed8bf7-79b1-4943-85b6-3b90dddd10c5 status: 200 OK code: 200 - duration: 203.680166ms + duration: 418.116959ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/763c682e-dad7-4446-a5f5-6996d1f12c4b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 480 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-04T14:32:48.281665Z","id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","name":"test-block-volume-from-snapshot","parent_volume":{"id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-07-04T14:32:48.281665Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:13:44.614770Z","id":"3636982a-0637-423a-88f2-a8dc4446d926","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T10:13:44.614770Z","zone":"fr-par-1"}' headers: Content-Length: - - "466" + - "480" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:48 GMT + - Thu, 07 Aug 2025 10:13:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 210f4284-816b-46e3-b421-a68c72b7b4d9 + - 9d78cf67-3610-4f38-b3c7-f36b763f8d00 status: 200 OK code: 200 - duration: 88.9665ms + duration: 113.892667ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/763c682e-dad7-4446-a5f5-6996d1f12c4b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 467 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-04T14:32:48.281665Z","id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","name":"test-block-volume-from-snapshot","parent_volume":{"id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-07-04T14:32:48.281665Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:13:44.614770Z","id":"3636982a-0637-423a-88f2-a8dc4446d926","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:13:44.614770Z","zone":"fr-par-1"}' headers: Content-Length: - - "467" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:53 GMT + - Thu, 07 Aug 2025 10:13:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a30d1ab-ac37-46d2-b641-bf03165a3979 + - 90ba2bfe-d18f-47ea-9702-1cb32ac9f288 status: 200 OK code: 200 - duration: 85.160708ms + duration: 171.048959ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/763c682e-dad7-4446-a5f5-6996d1f12c4b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 467 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-04T14:32:48.281665Z","id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","name":"test-block-volume-from-snapshot","parent_volume":{"id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-07-04T14:32:48.281665Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:13:44.614770Z","id":"3636982a-0637-423a-88f2-a8dc4446d926","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:13:44.614770Z","zone":"fr-par-1"}' headers: Content-Length: - - "467" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:53 GMT + - Thu, 07 Aug 2025 10:13:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e45fd11c-797e-43f7-8ef3-68d2b6cf15a2 + - a2731d2b-03fd-48e9-94b2-6d4a704b06a7 status: 200 OK code: 200 - duration: 83.799917ms + duration: 113.85825ms - id: 8 request: proto: HTTP/1.1 @@ -408,13 +408,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-block-volume-from-snapshot","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_snapshot":{"size":30000000000,"snapshot_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b"},"tags":[]}' + body: '{"name":"test-block-volume-from-snapshot","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_snapshot":{"size":30000000000,"snapshot_id":"3636982a-0637-423a-88f2-a8dc4446d926"},"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 448 + content_length: 462 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:53.759750Z","id":"5546da90-4529-473c-ac1c-342b893dbd18","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:53.759750Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:50.454538Z","id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3636982a-0637-423a-88f2-a8dc4446d926","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:50.454538Z","zone":"fr-par-1"}' headers: Content-Length: - - "448" + - "462" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:53 GMT + - Thu, 07 Aug 2025 10:13:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d28f9c5-a6be-4210-a606-81219ea3e504 + - 84ba6bc4-104d-4853-8f9c-1dbdfd2f8fad status: 200 OK code: 200 - duration: 112.600417ms + duration: 132.458084ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 448 + content_length: 462 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:53.759750Z","id":"5546da90-4529-473c-ac1c-342b893dbd18","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:53.759750Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:50.454538Z","id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3636982a-0637-423a-88f2-a8dc4446d926","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:50.454538Z","zone":"fr-par-1"}' headers: Content-Length: - - "448" + - "462" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:53 GMT + - Thu, 07 Aug 2025 10:13:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a20cab9-ca3f-4f15-9c34-78e4dbb6d2ef + - e8cc4e42-1708-41ce-b644-0b60826cfb37 status: 200 OK code: 200 - duration: 45.188375ms + duration: 36.932958ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:53.759750Z","id":"5546da90-4529-473c-ac1c-342b893dbd18","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:53.759750Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:50.454538Z","id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3636982a-0637-423a-88f2-a8dc4446d926","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:50.454538Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:58 GMT + - Thu, 07 Aug 2025 10:13:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fedae14-655f-40d3-ad3a-45d4592558ae + - 69a3c8b8-52b6-4da9-a07c-a71c2a2e224f status: 200 OK code: 200 - duration: 56.334917ms + duration: 35.882708ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:53.759750Z","id":"5546da90-4529-473c-ac1c-342b893dbd18","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:53.759750Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:50.454538Z","id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3636982a-0637-423a-88f2-a8dc4446d926","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:50.454538Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:58 GMT + - Thu, 07 Aug 2025 10:13:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d8868b3-398f-47de-b970-f23fed5b90c2 + - 6afcc157-949d-47fe-9e33-cd3c6ada087f status: 200 OK code: 200 - duration: 41.541875ms + duration: 39.698584ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 method: GET response: proto: HTTP/2.0 @@ -619,20 +619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 481 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:53.759750Z","id":"5546da90-4529-473c-ac1c-342b893dbd18","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:53.759750Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:13:44.614770Z","id":"3636982a-0637-423a-88f2-a8dc4446d926","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:13:44.614770Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:59 GMT + - Thu, 07 Aug 2025 10:13:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 052fc0e9-ed2c-424c-96ab-ccc489ea5d4a + - c5ac36d2-bc0f-4cfe-84e1-47c9e531a085 status: 200 OK code: 200 - duration: 60.995917ms + duration: 224.926042ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a1ebf7a-8cd2-4cee-bab4-f82af444cc51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a method: GET response: proto: HTTP/2.0 @@ -668,20 +668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:42.993867Z","id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:42.993867Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:50.454538Z","id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3636982a-0637-423a-88f2-a8dc4446d926","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:50.454538Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:59 GMT + - Thu, 07 Aug 2025 10:13:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22e1ba46-39f3-4fff-bd87-7347b710a413 + - 69524bf4-3596-4e88-b8a8-2c3168a44786 status: 200 OK code: 200 - duration: 43.674166ms + duration: 35.304459ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/763c682e-dad7-4446-a5f5-6996d1f12c4b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d2f1700c-ca85-43af-841f-1d1b2fbaf0b5 method: GET response: proto: HTTP/2.0 @@ -717,20 +717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 467 + content_length: 434 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-04T14:32:48.281665Z","id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","name":"test-block-volume-from-snapshot","parent_volume":{"id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-07-04T14:32:48.281665Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:39.317656Z","id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:39.317656Z","zone":"fr-par-1"}' headers: Content-Length: - - "467" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:32:59 GMT + - Thu, 07 Aug 2025 10:13:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a6b2184-99a0-4f7d-a822-b053a7f3ab17 + - 83aa58c7-a368-4978-8b6a-5bdebf0088ef status: 200 OK code: 200 - duration: 110.035958ms + duration: 37.117791ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 method: GET response: proto: HTTP/2.0 @@ -766,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 481 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:53.759750Z","id":"5546da90-4529-473c-ac1c-342b893dbd18","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:53.759750Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:13:44.614770Z","id":"3636982a-0637-423a-88f2-a8dc4446d926","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:13:44.614770Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:00 GMT + - Thu, 07 Aug 2025 10:13:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89afed17-3b50-4b5b-ab1a-7025b97377e5 + - 35f62bca-0631-4d7d-b470-9a17b06ce821 status: 200 OK code: 200 - duration: 45.634292ms + duration: 160.717958ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a method: GET response: proto: HTTP/2.0 @@ -815,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:53.759750Z","id":"5546da90-4529-473c-ac1c-342b893dbd18","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:53.759750Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:50.454538Z","id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3636982a-0637-423a-88f2-a8dc4446d926","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:50.454538Z","zone":"fr-par-1"}' headers: Content-Length: - - "449" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:00 GMT + - Thu, 07 Aug 2025 10:13:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d52380c-01cb-447a-91e2-e60db576d482 + - b5ad56b3-849d-4286-abe4-dcd0c14c9131 status: 200 OK code: 200 - duration: 44.587292ms + duration: 41.827542ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +855,106 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 481 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-08-07T10:13:44.614770Z","id":"3636982a-0637-423a-88f2-a8dc4446d926","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:13:44.614770Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "481" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 07 Aug 2025 10:13: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: + - c25fe40a-0368-4543-85a3-4d077bab81f4 + status: 200 OK + code: 200 + duration: 143.565416ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 463 + uncompressed: false + body: '{"created_at":"2025-08-07T10:13:50.454538Z","id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3636982a-0637-423a-88f2-a8dc4446d926","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":30000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:50.454538Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "463" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 07 Aug 2025 10:13: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: + - f4f7ebba-0e95-4f3e-8537-73ad5fb3a681 + status: 200 OK + code: 200 + duration: 35.645209ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a method: DELETE response: proto: HTTP/2.0 @@ -873,9 +971,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:00 GMT + - Thu, 07 Aug 2025 10:13:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,11 +981,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30ac9b53-79d6-4897-a182-4afeccc1824a + - 92a3c931-a7ec-42bc-9bb3-c08adcd0fc36 status: 204 No Content code: 204 - duration: 66.646125ms - - id: 18 + duration: 65.661542ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -902,8 +1000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a method: GET response: proto: HTTP/2.0 @@ -913,7 +1011,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"5546da90-4529-473c-ac1c-342b893dbd18","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","type":"not_found"}' headers: Content-Length: - "127" @@ -922,9 +1020,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,11 +1030,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de681900-9f38-457d-89b9-481a424b9c81 + - 3fa20adb-cb45-4544-9380-dce69d12cbd9 status: 404 Not Found code: 404 - duration: 42.390875ms - - id: 19 + duration: 46.988959ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -951,8 +1049,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/763c682e-dad7-4446-a5f5-6996d1f12c4b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 method: GET response: proto: HTTP/2.0 @@ -960,20 +1058,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 467 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-07-04T14:32:48.281665Z","id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","name":"test-block-volume-from-snapshot","parent_volume":{"id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-07-04T14:32:48.281665Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:13:44.614770Z","id":"3636982a-0637-423a-88f2-a8dc4446d926","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:13:44.614770Z","zone":"fr-par-1"}' headers: Content-Length: - - "467" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,11 +1079,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b03aa72-6f5d-44e6-8400-b9d9ec937d3c + - 74bf2bb2-dc04-4e99-af6d-233ab3957240 status: 200 OK code: 200 - duration: 137.659833ms - - id: 20 + duration: 185.991834ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1000,8 +1098,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/763c682e-dad7-4446-a5f5-6996d1f12c4b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 method: DELETE response: proto: HTTP/2.0 @@ -1018,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,11 +1126,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98c07fe6-a9e0-470d-b063-49df77fb38a0 + - b07fc9c8-455f-4abc-a028-16d78f072081 status: 204 No Content code: 204 - duration: 115.152083ms - - id: 21 + duration: 194.171167ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1047,8 +1145,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/763c682e-dad7-4446-a5f5-6996d1f12c4b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3636982a-0637-423a-88f2-a8dc4446d926 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1156,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"763c682e-dad7-4446-a5f5-6996d1f12c4b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"3636982a-0637-423a-88f2-a8dc4446d926","type":"not_found"}' headers: Content-Length: - "129" @@ -1067,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,11 +1175,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8beadb1-a898-459c-8a35-4459f491eac4 + - 9c51afff-d351-47ab-825c-f3a85317c6dd status: 404 Not Found code: 404 - duration: 34.560584ms - - id: 22 + duration: 49.154208ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1096,8 +1194,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a1ebf7a-8cd2-4cee-bab4-f82af444cc51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d2f1700c-ca85-43af-841f-1d1b2fbaf0b5 method: GET response: proto: HTTP/2.0 @@ -1105,20 +1203,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 434 uncompressed: false - body: '{"created_at":"2025-07-04T14:32:42.993867Z","id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-07-04T14:32:42.993867Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:13:39.317656Z","id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:13:39.317656Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,11 +1224,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 886ab645-8452-4b10-b484-51c899fdcd06 + - df2d8cb2-6fe6-443c-9e88-19b506b31983 status: 200 OK code: 200 - duration: 39.887708ms - - id: 23 + duration: 52.690208ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1145,8 +1243,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a1ebf7a-8cd2-4cee-bab4-f82af444cc51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d2f1700c-ca85-43af-841f-1d1b2fbaf0b5 method: DELETE response: proto: HTTP/2.0 @@ -1163,9 +1261,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1173,11 +1271,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bafb5f98-b616-49d5-ad97-eb5d455fec6f + - db35dc04-29de-4c54-b520-0171efba5687 status: 204 No Content code: 204 - duration: 68.299667ms - - id: 24 + duration: 58.718916ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1192,8 +1290,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a1ebf7a-8cd2-4cee-bab4-f82af444cc51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d2f1700c-ca85-43af-841f-1d1b2fbaf0b5 method: GET response: proto: HTTP/2.0 @@ -1203,7 +1301,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","type":"not_found"}' headers: Content-Length: - "127" @@ -1212,9 +1310,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1222,11 +1320,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e918684-c05d-45a0-8a6d-789bbc208288 + - d16f1b09-0dad-48e6-aa42-0aee5d850d6a status: 404 Not Found code: 404 - duration: 37.014208ms - - id: 25 + duration: 38.248166ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1241,8 +1339,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a1ebf7a-8cd2-4cee-bab4-f82af444cc51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d2f1700c-ca85-43af-841f-1d1b2fbaf0b5 method: DELETE response: proto: HTTP/2.0 @@ -1252,7 +1350,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"8a1ebf7a-8cd2-4cee-bab4-f82af444cc51","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"d2f1700c-ca85-43af-841f-1d1b2fbaf0b5","type":"not_found"}' headers: Content-Length: - "127" @@ -1261,9 +1359,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1271,11 +1369,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59ec95a0-1d8a-4b28-afca-e7b89af35607 + - 05dd233e-7948-4d16-8f5b-39b910adb8d0 status: 404 Not Found code: 404 - duration: 67.939167ms - - id: 26 + duration: 55.249333ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1290,8 +1388,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5546da90-4529-473c-ac1c-342b893dbd18 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/658ddd32-8edf-47b4-b5fe-faf02740f66a method: DELETE response: proto: HTTP/2.0 @@ -1301,7 +1399,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"5546da90-4529-473c-ac1c-342b893dbd18","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"658ddd32-8edf-47b4-b5fe-faf02740f66a","type":"not_found"}' headers: Content-Length: - "127" @@ -1310,9 +1408,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 04 Jul 2025 14:33:01 GMT + - Thu, 07 Aug 2025 10:13:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1320,7 +1418,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36d5bb64-2e49-4969-9e44-8bde4ec11d7f + - 60b90cd2-6d22-42b6-b50a-91707a72bc85 status: 404 Not Found code: 404 - duration: 62.781166ms + duration: 57.704417ms diff --git a/internal/services/block/testdata/volume-from-snapshot.cassette.yaml b/internal/services/block/testdata/volume-from-snapshot.cassette.yaml index 13a5a7e07b..16f30a3606 100644 --- a/internal/services/block/testdata/volume-from-snapshot.cassette.yaml +++ b/internal/services/block/testdata/volume-from-snapshot.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-block-volume-from-snapshot-base","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":20000000000},"tags":[]}' + body: '{"name":"test-block-volume-from-snapshot-base","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_empty":{"size":20000000000},"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:27.064271Z","id":"1d17df74-068e-40c0-a0ef-615285f74de9","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:27.064271Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:09.646404Z","id":"d397af51-739a-4256-bc77-c3ac83e876d8","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:09.646404Z","zone":"fr-par-1"}' headers: Content-Length: - "433" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:27 GMT + - Thu, 07 Aug 2025 10:14:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a9dadfa-afb4-4f2a-9d3b-d2f23b4a60ba + - f1395e52-7508-4ddc-bc75-17678bb569f9 status: 200 OK code: 200 - duration: 262.638ms + duration: 438.209708ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d17df74-068e-40c0-a0ef-615285f74de9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d397af51-739a-4256-bc77-c3ac83e876d8 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:27.064271Z","id":"1d17df74-068e-40c0-a0ef-615285f74de9","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:27.064271Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:09.646404Z","id":"d397af51-739a-4256-bc77-c3ac83e876d8","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:09.646404Z","zone":"fr-par-1"}' headers: Content-Length: - "433" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:27 GMT + - Thu, 07 Aug 2025 10:14:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ae5f704-8c6f-432f-bb15-01d470e3b41d + - 25e1a21b-c474-4fb4-9f55-dc4608627859 status: 200 OK code: 200 - duration: 98.437125ms + duration: 42.749ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d17df74-068e-40c0-a0ef-615285f74de9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d397af51-739a-4256-bc77-c3ac83e876d8 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 434 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:27.064271Z","id":"1d17df74-068e-40c0-a0ef-615285f74de9","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:27.064271Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:09.646404Z","id":"d397af51-739a-4256-bc77-c3ac83e876d8","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:09.646404Z","zone":"fr-par-1"}' headers: Content-Length: - "434" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:32 GMT + - Thu, 07 Aug 2025 10:14:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26ec5245-2590-466b-860c-39ebecda24d3 + - b8e6b1e5-28b0-42a4-a0f9-036ba18c9909 status: 200 OK code: 200 - duration: 64.642625ms + duration: 45.360208ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d17df74-068e-40c0-a0ef-615285f74de9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d397af51-739a-4256-bc77-c3ac83e876d8 method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 434 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:27.064271Z","id":"1d17df74-068e-40c0-a0ef-615285f74de9","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:27.064271Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:09.646404Z","id":"d397af51-739a-4256-bc77-c3ac83e876d8","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:09.646404Z","zone":"fr-par-1"}' headers: Content-Length: - "434" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:32 GMT + - Thu, 07 Aug 2025 10:14:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cba80880-36e7-4ca7-90a1-c5c045ab9576 + - e44006a1-1792-4aa9-b43b-49f1f960e90c status: 200 OK code: 200 - duration: 70.244875ms + duration: 41.254375ms - id: 4 request: proto: HTTP/1.1 @@ -210,13 +210,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"1d17df74-068e-40c0-a0ef-615285f74de9","name":"test-block-volume-from-snapshot","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"d397af51-739a-4256-bc77-c3ac83e876d8","name":"test-block-volume-from-snapshot","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: @@ -227,7 +227,7 @@ interactions: trailer: {} content_length: 480 uncompressed: false - body: '{"class":"sbs","created_at":"2025-01-22T13:30:32.513279Z","id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","name":"test-block-volume-from-snapshot","parent_volume":{"id":"1d17df74-068e-40c0-a0ef-615285f74de9","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-01-22T13:30:32.513279Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:14:14.925615Z","id":"b93bce99-076d-4c39-a346-f467d2731c91","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d397af51-739a-4256-bc77-c3ac83e876d8","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T10:14:14.925615Z","zone":"fr-par-1"}' headers: Content-Length: - "480" @@ -236,9 +236,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:32 GMT + - Thu, 07 Aug 2025 10:14:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81196458-c2c5-489a-84de-641ecff5950f + - 578f39ba-ce74-4407-94ed-0280f033d9bb status: 200 OK code: 200 - duration: 194.856584ms + duration: 1.067249375s - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3ca78760-3a8c-4846-80d0-7d25929bd0aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b93bce99-076d-4c39-a346-f467d2731c91 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 480 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-01-22T13:30:32.513279Z","id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","name":"test-block-volume-from-snapshot","parent_volume":{"id":"1d17df74-068e-40c0-a0ef-615285f74de9","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-01-22T13:30:32.513279Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:14:14.925615Z","id":"b93bce99-076d-4c39-a346-f467d2731c91","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d397af51-739a-4256-bc77-c3ac83e876d8","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:14:14.925615Z","zone":"fr-par-1"}' headers: Content-Length: - - "480" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:32 GMT + - Thu, 07 Aug 2025 10:14:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 478419e4-cef6-4262-98e6-ce59d997d543 + - 2b47bfac-b9d1-417c-a5c6-d208bb086bdc status: 200 OK code: 200 - duration: 71.878417ms + duration: 201.07075ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3ca78760-3a8c-4846-80d0-7d25929bd0aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b93bce99-076d-4c39-a346-f467d2731c91 method: GET response: proto: HTTP/2.0 @@ -325,7 +325,7 @@ interactions: trailer: {} content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-01-22T13:30:32.513279Z","id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","name":"test-block-volume-from-snapshot","parent_volume":{"id":"1d17df74-068e-40c0-a0ef-615285f74de9","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-01-22T13:30:32.513279Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:14:14.925615Z","id":"b93bce99-076d-4c39-a346-f467d2731c91","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d397af51-739a-4256-bc77-c3ac83e876d8","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:14:14.925615Z","zone":"fr-par-1"}' headers: Content-Length: - "481" @@ -334,9 +334,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:37 GMT + - Thu, 07 Aug 2025 10:14:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,48 +344,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e64682c-e25e-4093-888d-f36defd63bcb + - c16c048a-e425-4698-b046-43d82767c3ed status: 200 OK code: 200 - duration: 83.595625ms + duration: 104.525459ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 204 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-block-volume-from-snapshot","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_snapshot":{"size":null,"snapshot_id":"b93bce99-076d-4c39-a346-f467d2731c91"},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3ca78760-3a8c-4846-80d0-7d25929bd0aa - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 462 uncompressed: false - body: '{"class":"sbs","created_at":"2025-01-22T13:30:32.513279Z","id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","name":"test-block-volume-from-snapshot","parent_volume":{"id":"1d17df74-068e-40c0-a0ef-615285f74de9","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-01-22T13:30:32.513279Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:16.317803Z","id":"555da321-c538-4c66-b73b-a5fedb886896","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b93bce99-076d-4c39-a346-f467d2731c91","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:16.317803Z","zone":"fr-par-1"}' headers: Content-Length: - - "481" + - "462" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:37 GMT + - Thu, 07 Aug 2025 10:14:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,30 +395,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3c9d757-e775-40fc-84ae-5c635cf9f0d0 + - 4c1c36d9-fcd3-4936-9428-fc4dc88de350 status: 200 OK code: 200 - duration: 74.583042ms + duration: 137.157958ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 204 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-block-volume-from-snapshot","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_snapshot":{"size":null,"snapshot_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa"},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -425,7 +425,7 @@ interactions: trailer: {} content_length: 462 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:37.966735Z","id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:37.966735Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:16.317803Z","id":"555da321-c538-4c66-b73b-a5fedb886896","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b93bce99-076d-4c39-a346-f467d2731c91","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:16.317803Z","zone":"fr-par-1"}' headers: Content-Length: - "462" @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:37 GMT + - Thu, 07 Aug 2025 10:14:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f94bb3a2-493c-43e9-b935-b19f3824ef8e + - 1a6b250d-c9fb-4ccf-b8b0-d3db2087b028 status: 200 OK code: 200 - duration: 180.505292ms + duration: 38.765584ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:37.966735Z","id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:37.966735Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:16.317803Z","id":"555da321-c538-4c66-b73b-a5fedb886896","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b93bce99-076d-4c39-a346-f467d2731c91","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:16.317803Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:38 GMT + - Thu, 07 Aug 2025 10:14:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 085d7b74-2df8-40fa-a533-97820f6a1d15 + - 340f4cd4-18b6-4952-9050-c72460eb4cf2 status: 200 OK code: 200 - duration: 64.214833ms + duration: 43.9855ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 method: GET response: proto: HTTP/2.0 @@ -523,7 +523,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:37.966735Z","id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:37.966735Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:16.317803Z","id":"555da321-c538-4c66-b73b-a5fedb886896","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b93bce99-076d-4c39-a346-f467d2731c91","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:16.317803Z","zone":"fr-par-1"}' headers: Content-Length: - "463" @@ -532,9 +532,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:43 GMT + - Thu, 07 Aug 2025 10:14:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90940611-8c2a-480e-bb7a-c0a0fb07fa05 + - 0808e565-f67e-4f81-bb06-6797df4532fa status: 200 OK code: 200 - duration: 120.0445ms + duration: 38.743208ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b93bce99-076d-4c39-a346-f467d2731c91 method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 481 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:37.966735Z","id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:37.966735Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:14:14.925615Z","id":"b93bce99-076d-4c39-a346-f467d2731c91","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d397af51-739a-4256-bc77-c3ac83e876d8","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:14:14.925615Z","zone":"fr-par-1"}' headers: Content-Length: - - "463" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:43 GMT + - Thu, 07 Aug 2025 10:14:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea57179f-1751-45b6-9800-a7a3048b82ad + - 63c4a131-a438-4d72-b6dc-5970a6cc20eb status: 200 OK code: 200 - duration: 70.076083ms + duration: 153.708083ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 method: GET response: proto: HTTP/2.0 @@ -621,7 +621,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:37.966735Z","id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:37.966735Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:16.317803Z","id":"555da321-c538-4c66-b73b-a5fedb886896","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b93bce99-076d-4c39-a346-f467d2731c91","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:16.317803Z","zone":"fr-par-1"}' headers: Content-Length: - "463" @@ -630,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:43 GMT + - Thu, 07 Aug 2025 10:14:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d1f4122-8469-4493-be74-e6a63814cc73 + - 77ce6a26-90e0-4cd7-bbf0-a0f6a2064ef4 status: 200 OK code: 200 - duration: 85.664417ms + duration: 36.336333ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d17df74-068e-40c0-a0ef-615285f74de9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d397af51-739a-4256-bc77-c3ac83e876d8 method: GET response: proto: HTTP/2.0 @@ -670,7 +670,7 @@ interactions: trailer: {} content_length: 434 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:27.064271Z","id":"1d17df74-068e-40c0-a0ef-615285f74de9","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:27.064271Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:09.646404Z","id":"d397af51-739a-4256-bc77-c3ac83e876d8","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:09.646404Z","zone":"fr-par-1"}' headers: Content-Length: - "434" @@ -679,9 +679,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:44 GMT + - Thu, 07 Aug 2025 10:14:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7a793eb-be16-47df-8437-0a4e28ea88ad + - b1ff2790-10c4-481e-a66e-fba381cc0e34 status: 200 OK code: 200 - duration: 71.332625ms + duration: 39.365792ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3ca78760-3a8c-4846-80d0-7d25929bd0aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b93bce99-076d-4c39-a346-f467d2731c91 method: GET response: proto: HTTP/2.0 @@ -719,7 +719,7 @@ interactions: trailer: {} content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-01-22T13:30:32.513279Z","id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","name":"test-block-volume-from-snapshot","parent_volume":{"id":"1d17df74-068e-40c0-a0ef-615285f74de9","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-01-22T13:30:32.513279Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:14:14.925615Z","id":"b93bce99-076d-4c39-a346-f467d2731c91","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d397af51-739a-4256-bc77-c3ac83e876d8","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:14:14.925615Z","zone":"fr-par-1"}' headers: Content-Length: - "481" @@ -728,9 +728,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:44 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ecc07fe-70dc-4b82-96eb-60d71b375bc2 + - 948e535a-d7ca-4cac-a183-999988070da8 status: 200 OK code: 200 - duration: 80.992833ms + duration: 161.555792ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 method: GET response: proto: HTTP/2.0 @@ -768,7 +768,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:37.966735Z","id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:37.966735Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:16.317803Z","id":"555da321-c538-4c66-b73b-a5fedb886896","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b93bce99-076d-4c39-a346-f467d2731c91","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:16.317803Z","zone":"fr-par-1"}' headers: Content-Length: - "463" @@ -777,9 +777,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:44 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50087f2b-f3f5-495f-b858-13bfc5e858a9 + - 0b31f965-f533-478c-8e6e-3947cc225fc5 status: 200 OK code: 200 - duration: 80.291541ms + duration: 36.953041ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +806,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b93bce99-076d-4c39-a346-f467d2731c91 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 481 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-08-07T10:14:14.925615Z","id":"b93bce99-076d-4c39-a346-f467d2731c91","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d397af51-739a-4256-bc77-c3ac83e876d8","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:14:14.925615Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "481" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 07 Aug 2025 10:14:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 22c142e8-6596-4820-911a-025df821a40f + status: 200 OK + code: 200 + duration: 106.812125ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 method: GET response: proto: HTTP/2.0 @@ -817,7 +866,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:37.966735Z","id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:37.966735Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:16.317803Z","id":"555da321-c538-4c66-b73b-a5fedb886896","last_detached_at":null,"name":"test-block-volume-from-snapshot","parent_snapshot_id":"b93bce99-076d-4c39-a346-f467d2731c91","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:16.317803Z","zone":"fr-par-1"}' headers: Content-Length: - "463" @@ -826,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:45 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,11 +885,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bb0bef1-dfcf-401f-a3ac-ba552752c91c + - 5a5dc1ac-5377-450e-b791-7a8089c22f00 status: 200 OK code: 200 - duration: 73.747125ms - - id: 17 + duration: 35.397959ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -855,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 method: DELETE response: proto: HTTP/2.0 @@ -873,9 +922,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:45 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,11 +932,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bdcdaec-f60e-4f78-ba5e-18f4dc443d23 + - b34046d5-893d-4d49-bc43-e9e014ee7cca status: 204 No Content code: 204 - duration: 125.337833ms - - id: 18 + duration: 71.346542ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -902,8 +951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 method: GET response: proto: HTTP/2.0 @@ -913,7 +962,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"555da321-c538-4c66-b73b-a5fedb886896","type":"not_found"}' headers: Content-Length: - "127" @@ -922,9 +971,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:45 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,11 +981,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7080670-5090-405c-8fae-bc6d44df5d81 + - 23d378f8-77aa-4d42-8425-9ce96462c2c9 status: 404 Not Found code: 404 - duration: 66.998042ms - - id: 19 + duration: 43.141084ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -951,8 +1000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3ca78760-3a8c-4846-80d0-7d25929bd0aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b93bce99-076d-4c39-a346-f467d2731c91 method: GET response: proto: HTTP/2.0 @@ -962,7 +1011,7 @@ interactions: trailer: {} content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-01-22T13:30:32.513279Z","id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","name":"test-block-volume-from-snapshot","parent_volume":{"id":"1d17df74-068e-40c0-a0ef-615285f74de9","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-01-22T13:30:32.513279Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T10:14:14.925615Z","id":"b93bce99-076d-4c39-a346-f467d2731c91","name":"test-block-volume-from-snapshot","parent_volume":{"id":"d397af51-739a-4256-bc77-c3ac83e876d8","name":"test-block-volume-from-snapshot-base","status":"available","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-08-07T10:14:14.925615Z","zone":"fr-par-1"}' headers: Content-Length: - "481" @@ -971,9 +1020,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:45 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,11 +1030,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f551dac5-eb53-4fdf-8842-b7b71234d3b8 + - f0b38792-7716-4a23-889d-c96ac046ee58 status: 200 OK code: 200 - duration: 80.320666ms - - id: 20 + duration: 101.194166ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1000,8 +1049,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3ca78760-3a8c-4846-80d0-7d25929bd0aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b93bce99-076d-4c39-a346-f467d2731c91 method: DELETE response: proto: HTTP/2.0 @@ -1018,9 +1067,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:45 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,11 +1077,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dfe1d15-1b66-4fbb-80b0-1beef08a0938 + - 1be8e534-7f7b-492a-9666-80a09d5f4f70 status: 204 No Content code: 204 - duration: 117.862959ms - - id: 21 + duration: 136.5945ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1047,8 +1096,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3ca78760-3a8c-4846-80d0-7d25929bd0aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b93bce99-076d-4c39-a346-f467d2731c91 method: GET response: proto: HTTP/2.0 @@ -1058,7 +1107,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"3ca78760-3a8c-4846-80d0-7d25929bd0aa","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"b93bce99-076d-4c39-a346-f467d2731c91","type":"not_found"}' headers: Content-Length: - "129" @@ -1067,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:45 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1077,11 +1126,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43776bec-7a93-4984-930e-a65e30404bd5 + - fc7e7dc5-7df7-4ecc-b2bb-de03ceee5be2 status: 404 Not Found code: 404 - duration: 54.725917ms - - id: 22 + duration: 33.760583ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1096,8 +1145,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d17df74-068e-40c0-a0ef-615285f74de9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d397af51-739a-4256-bc77-c3ac83e876d8 method: GET response: proto: HTTP/2.0 @@ -1107,7 +1156,7 @@ interactions: trailer: {} content_length: 434 uncompressed: false - body: '{"created_at":"2025-01-22T13:30:27.064271Z","id":"1d17df74-068e-40c0-a0ef-615285f74de9","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-01-22T13:30:27.064271Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T10:14:09.646404Z","id":"d397af51-739a-4256-bc77-c3ac83e876d8","last_detached_at":null,"name":"test-block-volume-from-snapshot-base","parent_snapshot_id":null,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T10:14:09.646404Z","zone":"fr-par-1"}' headers: Content-Length: - "434" @@ -1116,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:45 GMT + - Thu, 07 Aug 2025 10:14:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1126,11 +1175,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 159c8128-34a4-404c-9d2d-7929a3ef25e4 + - f47dd145-2f29-4dd9-ac34-faa99e77f345 status: 200 OK code: 200 - duration: 81.305084ms - - id: 23 + duration: 36.373791ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1145,8 +1194,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d17df74-068e-40c0-a0ef-615285f74de9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d397af51-739a-4256-bc77-c3ac83e876d8 method: DELETE response: proto: HTTP/2.0 @@ -1163,9 +1212,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:45 GMT + - Thu, 07 Aug 2025 10:14:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1173,11 +1222,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce66a77f-6ef8-41e8-a4bc-ba4f7c72d134 + - cdb3ebd9-58ce-4975-a641-7ecd4c3e843a status: 204 No Content code: 204 - duration: 118.37025ms - - id: 24 + duration: 76.976958ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1192,8 +1241,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d17df74-068e-40c0-a0ef-615285f74de9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d397af51-739a-4256-bc77-c3ac83e876d8 method: GET response: proto: HTTP/2.0 @@ -1203,7 +1252,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"1d17df74-068e-40c0-a0ef-615285f74de9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"d397af51-739a-4256-bc77-c3ac83e876d8","type":"not_found"}' headers: Content-Length: - "127" @@ -1212,9 +1261,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:46 GMT + - Thu, 07 Aug 2025 10:14:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1222,11 +1271,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed31ef41-2002-44a2-a8ae-a0b36349773c + - bbd7d39f-0f15-4cb9-821d-cccbb837f8d7 status: 404 Not Found code: 404 - duration: 72.215292ms - - id: 25 + duration: 40.623666ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1241,8 +1290,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d17df74-068e-40c0-a0ef-615285f74de9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d397af51-739a-4256-bc77-c3ac83e876d8 method: DELETE response: proto: HTTP/2.0 @@ -1252,7 +1301,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"1d17df74-068e-40c0-a0ef-615285f74de9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"d397af51-739a-4256-bc77-c3ac83e876d8","type":"not_found"}' headers: Content-Length: - "127" @@ -1261,9 +1310,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:46 GMT + - Thu, 07 Aug 2025 10:14:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1271,11 +1320,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 073fdecc-d24c-4408-91b9-5d19401c91fb + - 310da0a7-fac0-4409-8c68-b7ece877e073 status: 404 Not Found code: 404 - duration: 127.790291ms - - id: 26 + duration: 71.237333ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1290,8 +1339,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f1a80a8-bc91-402d-8957-8ef7031a751d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/555da321-c538-4c66-b73b-a5fedb886896 method: DELETE response: proto: HTTP/2.0 @@ -1301,7 +1350,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"0f1a80a8-bc91-402d-8957-8ef7031a751d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"555da321-c538-4c66-b73b-a5fedb886896","type":"not_found"}' headers: Content-Length: - "127" @@ -1310,9 +1359,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 22 Jan 2025 13:30:46 GMT + - Thu, 07 Aug 2025 10:14:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1320,7 +1369,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89d599bf-574b-4139-819f-d31a588034f4 + - d8659042-8546-4a29-abdc-12fc642853c5 status: 404 Not Found code: 404 - duration: 104.307458ms + duration: 54.577833ms diff --git a/internal/services/block/volume.go b/internal/services/block/volume.go index a523a430dd..d2fe18757a 100644 --- a/internal/services/block/volume.go +++ b/internal/services/block/volume.go @@ -2,6 +2,7 @@ package block 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" @@ -172,6 +173,7 @@ func ResourceBlockVolumeRead(ctx context.Context, d *schema.ResourceData, m any) _ = d.Set("project_id", volume.ProjectID) _ = d.Set("tags", volume.Tags) snapshotID := "" + if volume.ParentSnapshotID != nil { id := *volume.ParentSnapshotID _, err := api.GetSnapshot(&block.GetSnapshotRequest{ diff --git a/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml b/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml index cd535116bc..20b2ebca68 100644 --- a/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Thu, 07 Aug 2025 11:31:21 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6652057-0030-42c0-876d-d2cae8171553 + - 7496d9b0-e12f-4163-91db-6fc8da01b599 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 49.660784ms + duration: 660.116541ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Thu, 07 Aug 2025 11:31:21 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f253f7f-918a-4c01-b66f-8ba2edee62b1 + - 0286eccc-9071-4fa3-9fdb-5f519d366ea4 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 98.751349ms + duration: 44.071834ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Thu, 07 Aug 2025 11:31:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d42e865-cf37-4d62-9a2b-f7142d1ac02d + - 701c3b2b-9213-4271-975c-2f0e9861b6b9 status: 200 OK code: 200 - duration: 119.629543ms + duration: 69.020583ms - id: 3 request: proto: HTTP/1.1 @@ -167,13 +167,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 1786 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:12.780734+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:21.787930+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1786" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:13 GMT + - Thu, 07 Aug 2025 11:31:22 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8459dce8-7c0a-4b6d-891b-7c16f5fdb28e + - a57fa7e5-c129-4e5a-a17c-a6c40b7e9337 status: 201 Created code: 201 - duration: 828.513274ms + duration: 957.3895ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 1786 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:12.780734+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:21.787930+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1786" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:13 GMT + - Thu, 07 Aug 2025 11:31:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d17ef12-728e-4fd2-b3ad-0f5a9aa04667 + - 2f83f72a-a485-463e-b908-42a890ea6573 status: 200 OK code: 200 - duration: 167.816883ms + duration: 133.902042ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1786 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:12.780734+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:21.787930+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1786" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:13 GMT + - Thu, 07 Aug 2025 11:31:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - beecdbe7-5c08-43f1-a43e-52c928531e3d + - 9ff3c189-c856-4072-ab71-211981435b92 status: 200 OK code: 200 - duration: 189.22838ms + duration: 118.472375ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: PATCH response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:13 GMT + - Thu, 07 Aug 2025 11:31:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c444e92-41ad-463a-b174-68f196239530 + - e278c400-d3c0-44b3-bf10-40f4ba4f7859 status: 200 OK code: 200 - duration: 119.913476ms + duration: 78.216625ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1786 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:12.780734+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:21.787930+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1786" @@ -393,9 +393,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:14 GMT + - Thu, 07 Aug 2025 11:31:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38805b57-976b-4576-b72b-4bf98b921e49 + - 72c2ae4e-515a-4c1f-8cbb-f897056e0ff7 status: 200 OK code: 200 - duration: 197.439468ms + duration: 144.871958ms - id: 8 request: proto: HTTP/1.1 @@ -422,106 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31: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: - - c404e8d7-9289-4bc4-b253-fde6e10d8c2d - status: 200 OK - code: 200 - duration: 90.098311ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31: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: - - 7eba32ee-dac7-4399-bf76-363265acd9c3 - status: 200 OK - code: 200 - duration: 74.280165ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -531,7 +433,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -540,9 +442,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:24 GMT + - Thu, 07 Aug 2025 11:31:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,11 +452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e39fa1a-5062-44a4-9ea6-244e828908dc + - 34223a9f-2f04-4bc5-9b75-9314e6df1f98 status: 200 OK code: 200 - duration: 97.790796ms - - id: 11 + duration: 42.186166ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -571,8 +473,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/action method: POST response: proto: HTTP/2.0 @@ -582,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/action","href_result":"/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29","id":"ce54379b-2563-4a08-adfc-904de2bef88d","progress":0,"started_at":"2025-06-10T15:31:24.539131+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/action","href_result":"/servers/4a339f70-270e-4835-bc57-063d2e1f2da9","id":"2a4e0bb1-9288-4f7b-998a-f880db3e8370","progress":0,"started_at":"2025-08-07T11:31:23.272142+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -591,11 +493,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:24 GMT + - Thu, 07 Aug 2025 11:31:23 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ce54379b-2563-4a08-adfc-904de2bef88d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2a4e0bb1-9288-4f7b-998a-f880db3e8370 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,11 +505,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d9efbd3-1ea2-431c-bd51-20855769bab4 + - b39a2935-ba04-49b1-8a1c-44844225273d status: 202 Accepted code: 202 - duration: 276.754405ms - - id: 12 + duration: 275.115583ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -622,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -633,7 +535,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:24.320188+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:23.046111+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -642,9 +544,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:25 GMT + - Thu, 07 Aug 2025 11:31:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,11 +554,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be1429b2-de8b-4f66-a134-c8121cdc95ed + - 05e8a5d6-6c9a-4ba1-9a27-79ef25381239 status: 200 OK code: 200 - duration: 527.337968ms - - id: 13 + duration: 177.022375ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -671,8 +573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -680,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 1943 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:27.626455+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1942" + - "1943" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Thu, 07 Aug 2025 11:31:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,11 +603,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 210032e4-de42-4f53-8085-7578d1a2654a + - 7bdddb95-7a50-425a-9179-06e4049922ac status: 200 OK code: 200 - duration: 204.759054ms - - id: 14 + duration: 161.136292ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -720,8 +622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -729,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 1943 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:27.626455+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1942" + - "1943" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Thu, 07 Aug 2025 11:31:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,11 +652,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4ac5a6b-6969-4cd2-8953-a7cec72e15c0 + - 295fda1a-1c67-43c4-a02d-278dc00cd876 status: 200 OK code: 200 - duration: 246.465841ms - - id: 15 + duration: 157.523625ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -769,8 +671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -780,7 +682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"73f90b1e-f889-453f-98a4-2a24439e700a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' headers: Content-Length: - "143" @@ -789,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Thu, 07 Aug 2025 11:31:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,11 +701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbb593d4-be9f-46ac-a537-d8e5bf82622b + - 63be00db-dedd-4ad1-a108-2d9ce0e7ec23 status: 404 Not Found code: 404 - duration: 85.1766ms - - id: 16 + duration: 39.280208ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -818,8 +720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -829,7 +731,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -838,9 +740,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Thu, 07 Aug 2025 11:31:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,11 +750,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a04d9a3f-42e7-4258-ab2b-411e848c976e + - b30333a9-dc23-4091-aeff-f1680ff8a263 status: 200 OK code: 200 - duration: 82.834147ms - - id: 17 + duration: 50.338542ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -867,8 +769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/user_data method: GET response: proto: HTTP/2.0 @@ -887,9 +789,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Thu, 07 Aug 2025 11:31:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -897,11 +799,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b92ec45d-d8de-427e-ae8f-db14113a3ee3 + - 17162d04-25b9-4060-8637-5a5b9fc7a6b4 status: 200 OK code: 200 - duration: 102.696797ms - - id: 18 + duration: 80.941959ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -916,8 +818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/private_nics method: GET response: proto: HTTP/2.0 @@ -936,11 +838,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Thu, 07 Aug 2025 11:31:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,30 +850,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - add9878b-7d57-427b-9d93-e0bd277a6bf2 + - afa11a90-35d8-4f07-90d2-ad262f3cef59 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 146.679072ms - - id: 19 + duration: 59.6525ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 150 + content_length: 151 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"tf-snapshot-blissful-fermi","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"tf-snapshot-quizzical-euler","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: @@ -980,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 478 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "477" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:31 GMT + - Thu, 07 Aug 2025 11:31:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,11 +903,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21f72ff9-bf53-4b33-bc80-ba2d2557cf50 + - 71863454-5da0-4ccc-b43e-911969382f50 status: 200 OK code: 200 - duration: 289.14419ms - - id: 20 + duration: 266.772833ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1020,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1029,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 708 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:31.182197Z","id":"f66b8b72-4f53-499e-9c0b-dfd0fb48e8bd","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "708" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:31 GMT + - Thu, 07 Aug 2025 11:31:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,11 +952,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75182365-3975-4c6d-94fd-863a1fdab4de + - 63bdacdc-0ee6-41c3-a5dd-e882d2706448 status: 200 OK code: 200 - duration: 155.550618ms - - id: 21 + duration: 129.578958ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1069,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1078,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 708 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:31.182197Z","id":"f66b8b72-4f53-499e-9c0b-dfd0fb48e8bd","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "708" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Thu, 07 Aug 2025 11:31:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,11 +1001,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50163794-d973-4d92-86fe-5c0c8241bbff + - 5b367743-0d26-468d-aafd-812c1289f92d status: 200 OK code: 200 - duration: 248.761054ms - - id: 22 + duration: 179.222542ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1118,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1127,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 708 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:31.182197Z","id":"f66b8b72-4f53-499e-9c0b-dfd0fb48e8bd","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "708" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Thu, 07 Aug 2025 11:31:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,11 +1050,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 435bb522-509c-49ef-aa09-8c61f2e93434 + - eb02affe-c5e1-4e35-9d42-f81b2777cc20 status: 200 OK code: 200 - duration: 219.921629ms - - id: 23 + duration: 155.810417ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1167,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1176,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 708 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:31.182197Z","id":"f66b8b72-4f53-499e-9c0b-dfd0fb48e8bd","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "708" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:47 GMT + - Thu, 07 Aug 2025 11:31:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,11 +1099,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8796cd4-7574-462c-8fd7-a1629370a3f2 + - 1f27dfe9-d4e5-424d-8025-3f2ff2f2873e status: 200 OK code: 200 - duration: 191.818304ms - - id: 24 + duration: 161.68175ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1216,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1225,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 708 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:31.182197Z","id":"f66b8b72-4f53-499e-9c0b-dfd0fb48e8bd","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "708" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:52 GMT + - Thu, 07 Aug 2025 11:31:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,11 +1148,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c29815ae-aa91-4604-85b6-de0945aa62a1 + - 92ab89f2-ecd8-4fe6-b492-2e3d8d2b80b8 status: 200 OK code: 200 - duration: 185.17851ms - - id: 25 + duration: 177.325125ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1265,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1274,20 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 708 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:31.182197Z","id":"f66b8b72-4f53-499e-9c0b-dfd0fb48e8bd","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "708" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:57 GMT + - Thu, 07 Aug 2025 11:31:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,11 +1197,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b676ea41-c2be-47e3-9bd1-d266ffec07dc + - b3c51395-3eff-42fe-8d14-4b62afe8abe7 status: 200 OK code: 200 - duration: 148.652451ms - - id: 26 + duration: 149.769833ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1314,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1323,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 708 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:31.182197Z","id":"f66b8b72-4f53-499e-9c0b-dfd0fb48e8bd","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "708" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Thu, 07 Aug 2025 11:32:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,11 +1246,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3a842b5-3b44-45bb-80e8-a0bd37dd8dc5 + - 477bdc31-f3af-4468-abc8-e50377be02c5 status: 200 OK code: 200 - duration: 119.811132ms - - id: 27 + duration: 298.8805ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1363,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1372,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 708 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:31.182197Z","id":"f66b8b72-4f53-499e-9c0b-dfd0fb48e8bd","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "708" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:07 GMT + - Thu, 07 Aug 2025 11:32:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,11 +1295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cd31faa-6c30-49a2-901f-2fb57dd61ddd + - 42657970-ac82-46fd-b586-209405fa3ce0 status: 200 OK code: 200 - duration: 136.447481ms - - id: 28 + duration: 297.216458ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1412,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1421,20 +1323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 479 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:12 GMT + - Thu, 07 Aug 2025 11:32:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,11 +1344,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d43c2dd1-7875-4816-9350-6a9831c375d9 + - 87f59e82-e6ee-4fa4-ba40-fa5c5155f66a status: 200 OK code: 200 - duration: 629.042634ms - - id: 29 + duration: 158.857542ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1461,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1470,20 +1372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 479 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:13 GMT + - Thu, 07 Aug 2025 11:32:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,11 +1393,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 994da726-03d4-4b74-aaf0-7952007fce29 + - 0ca0b787-2964-4ff6-ab23-b5630399bc50 status: 200 OK code: 200 - duration: 174.889374ms - - id: 30 + duration: 91.111542ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1510,8 +1412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -1519,20 +1421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 1943 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:27.626455+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1942" + - "1943" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:14 GMT + - Thu, 07 Aug 2025 11:32:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1540,11 +1442,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b174200-ffd2-499c-8d00-25afad3e88c7 + - 6a1e6653-deb3-4064-9d81-fcd5b4997e22 status: 200 OK code: 200 - duration: 197.167042ms - - id: 31 + duration: 140.385166ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1559,8 +1461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -1570,7 +1472,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"73f90b1e-f889-453f-98a4-2a24439e700a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' headers: Content-Length: - "143" @@ -1579,9 +1481,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:14 GMT + - Thu, 07 Aug 2025 11:32:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1589,11 +1491,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ad70d2c-6231-4e88-a6d8-540a7b33616e + - 2e9709e4-5ca5-4b6f-81ca-32ba6c852c87 status: 404 Not Found code: 404 - duration: 50.445685ms - - id: 32 + duration: 29.392666ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1608,8 +1510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -1619,7 +1521,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1628,9 +1530,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:14 GMT + - Thu, 07 Aug 2025 11:32:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1638,11 +1540,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1bbad92-ef0f-4dfe-b5a7-4e50c5a8eea4 + - 350f906c-e3f6-4f23-973b-147c816fb779 status: 200 OK code: 200 - duration: 88.454406ms - - id: 33 + duration: 40.860458ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1657,8 +1559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/user_data method: GET response: proto: HTTP/2.0 @@ -1677,9 +1579,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:14 GMT + - Thu, 07 Aug 2025 11:32:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1687,11 +1589,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6934d13-20da-47b6-a193-0ffffe94c2db + - d41391b4-f4d4-4868-97d1-cb60e14ccccd status: 200 OK code: 200 - duration: 91.313307ms - - id: 34 + duration: 76.32775ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1706,8 +1608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/private_nics method: GET response: proto: HTTP/2.0 @@ -1726,11 +1628,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:14 GMT + - Thu, 07 Aug 2025 11:32:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,13 +1640,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a62a493-04f5-49de-af4c-67a73789f820 + - e00aefc4-dea0-460e-bb66-a8dd9545b9d0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.097996ms - - id: 35 + duration: 61.659792ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1759,8 +1661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -1768,20 +1670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 479 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:14 GMT + - Thu, 07 Aug 2025 11:32:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,11 +1691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2229568-121a-4ee8-9464-23b5193246b7 + - 1ef7c508-f93e-4ff2-b9da-7b6feeedd3c0 status: 200 OK code: 200 - duration: 123.062529ms - - id: 36 + duration: 102.377041ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1808,8 +1710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -1817,20 +1719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 1943 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:27.626455+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1942" + - "1943" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:16 GMT + - Thu, 07 Aug 2025 11:32:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,11 +1740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6240f949-fb1b-4983-99f0-86f29d24c7b1 + - 800749bf-31f7-463e-9fc8-10aba14efd14 status: 200 OK code: 200 - duration: 200.01256ms - - id: 37 + duration: 117.9755ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1857,8 +1759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -1868,7 +1770,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"73f90b1e-f889-453f-98a4-2a24439e700a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' headers: Content-Length: - "143" @@ -1877,9 +1779,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:16 GMT + - Thu, 07 Aug 2025 11:32:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,11 +1789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73157107-edb0-4be3-9b17-9f5f6742f230 + - b6e76728-877b-4e32-913a-1f38d89eaabe status: 404 Not Found code: 404 - duration: 61.796923ms - - id: 38 + duration: 30.522583ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1906,8 +1808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -1917,7 +1819,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1926,9 +1828,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:16 GMT + - Thu, 07 Aug 2025 11:32:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1936,11 +1838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4019762e-5dd7-44df-b3f6-2b61de10ef29 + - d21427d8-3893-4671-b70a-84d0eb89f289 status: 200 OK code: 200 - duration: 73.163268ms - - id: 39 + duration: 36.723917ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1955,8 +1857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/user_data method: GET response: proto: HTTP/2.0 @@ -1975,9 +1877,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:16 GMT + - Thu, 07 Aug 2025 11:32:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,11 +1887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dd3d480-1582-4257-a13b-a25527fd7a84 + - df18cd33-9280-465a-8feb-975c1265c550 status: 200 OK code: 200 - duration: 100.284552ms - - id: 40 + duration: 58.1855ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2004,8 +1906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/private_nics method: GET response: proto: HTTP/2.0 @@ -2024,11 +1926,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:16 GMT + - Thu, 07 Aug 2025 11:32:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,13 +1938,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6387e668-1461-4b66-9e9c-2d41d9ed27ee + - 2e72def8-6709-4e88-ad52-7fc557d86e70 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 110.260389ms - - id: 41 + duration: 60.626709ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2057,8 +1959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -2066,20 +1968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 479 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:16 GMT + - Thu, 07 Aug 2025 11:32:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,28 +1989,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00358085-ff87-4b47-a28a-b7fd5e62e6fd + - 81a23114-71ec-40f4-9f5d-ac81d6ba3a8f status: 200 OK code: 200 - duration: 123.696167ms - - id: 42 + duration: 148.841916ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 197 + content_length: 201 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-youthful-moore","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_snapshot":{"size":null,"snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f"},"tags":[]}' + body: '{"name":"tf-volume-optimistic-greider","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_snapshot":{"size":null,"snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda"},"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: @@ -2117,20 +2019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 455 + content_length: 459 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:18.277391Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:12.881097Z","zone":"fr-par-1"}' headers: Content-Length: - - "455" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:18 GMT + - Thu, 07 Aug 2025 11:32:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,11 +2040,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06f561c3-9a29-412c-8fe4-ca87d72cb64a + - dcf8e256-4f39-4ecd-b2ef-79cdb156f4a7 status: 200 OK code: 200 - duration: 368.183784ms - - id: 43 + duration: 133.920708ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2157,8 +2059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -2166,20 +2068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 455 + content_length: 459 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:18.277391Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:12.881097Z","zone":"fr-par-1"}' headers: Content-Length: - - "455" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:18 GMT + - Thu, 07 Aug 2025 11:32:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,11 +2089,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ba0e077-2fa5-4226-9d21-b406e726a291 + - a1c41711-0323-443d-980c-aa2287a79309 status: 200 OK code: 200 - duration: 85.639837ms - - id: 44 + duration: 37.858625ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2206,8 +2108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -2215,20 +2117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 456 + content_length: 460 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:18.277391Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:12.881097Z","zone":"fr-par-1"}' headers: Content-Length: - - "456" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:23 GMT + - Thu, 07 Aug 2025 11:32:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,11 +2138,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bae253bc-46ff-4f51-8ce5-cea78775b722 + - 682cf37d-3cf9-40f8-a231-02f6e446860c status: 200 OK code: 200 - duration: 79.769137ms - - id: 45 + duration: 55.921209ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2255,8 +2157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -2264,20 +2166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 456 + content_length: 460 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:18.277391Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:12.881097Z","zone":"fr-par-1"}' headers: Content-Length: - - "456" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:23 GMT + - Thu, 07 Aug 2025 11:32:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,11 +2187,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 792ffcdf-840b-4653-ac73-4aabee352b6e + - 7d366925-434e-4a8b-845c-4118dacd0e6c status: 200 OK code: 200 - duration: 96.352457ms - - id: 46 + duration: 42.2675ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 479 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "479" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 07 Aug 2025 11:32: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: + - fdb9b3f4-d133-4bba-b591-fcbe9ebf2c8c + status: 200 OK + code: 200 + duration: 109.209208ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2304,7 +2255,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -2324,11 +2275,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:23 GMT + - Thu, 07 Aug 2025 11:32:18 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,13 +2287,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7c45fc7-6e55-4251-bbd6-53a7843f5e11 + - e29b3617-3272-415e-803b-d979806f2495 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 55.617453ms - - id: 47 + duration: 67.766084ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2357,7 +2308,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -2377,11 +2328,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:23 GMT + - Thu, 07 Aug 2025 11:32:18 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2389,13 +2340,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0783f7c-ce97-4a4c-8fe1-4701757de314 + - caf3547e-3f32-4548-b518-39bef3881b78 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 96.581747ms - - id: 48 + duration: 53.873542ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2406,13 +2357,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot-2","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","volumes":{"0":{"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot-2","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","volumes":{"0":{"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -2423,7 +2374,7 @@ interactions: trailer: {} content_length: 1218 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:24.237264+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:18.579024+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1218" @@ -2432,11 +2383,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:24 GMT + - Thu, 07 Aug 2025 11:32:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2444,11 +2395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b40cb412-5a28-4c09-9ce7-c363889c75da + - 89d93302-6b1a-423a-9d1a-5718ddabaa57 status: 201 Created code: 201 - duration: 626.64744ms - - id: 49 + duration: 567.930958ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2463,8 +2414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -2474,7 +2425,7 @@ interactions: trailer: {} content_length: 1218 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:24.237264+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:18.579024+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1218" @@ -2483,9 +2434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:24 GMT + - Thu, 07 Aug 2025 11:32:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2493,11 +2444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c29635c-4daa-42aa-ac5c-ba134e150bc1 + - 6ba79b00-bdd2-4555-aa21-a6187e2a35fa status: 200 OK code: 200 - duration: 184.008125ms - - id: 50 + duration: 116.909417ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2512,8 +2463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -2521,20 +2472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1218 + content_length: 1304 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:24.237264+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:18.579024+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1218" + - "1304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:24 GMT + - Thu, 07 Aug 2025 11:32:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2542,11 +2493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4448672-3bc2-446a-a3b9-a1e74211aebe + - 0857bcd9-91b7-4bb8-8d21-b7a74b0267f8 status: 200 OK code: 200 - duration: 191.339704ms - - id: 51 + duration: 127.299875ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2561,8 +2512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -2570,20 +2521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 692 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:24.128510Z","id":"cf5ee5fb-f75a-4b57-a31a-1f2520bf663b","product_resource_id":"9d53260b-6231-4560-bb34-ec12fa621e2e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:24.128510Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:24 GMT + - Thu, 07 Aug 2025 11:32:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2591,11 +2542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ccaa484-11f6-4cce-9f1a-52300b9417f5 + - f938f6dd-c95d-4531-ac70-532ed5fa9c95 status: 200 OK code: 200 - duration: 87.728394ms - - id: 52 + duration: 43.303083ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2612,8 +2563,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/action method: POST response: proto: HTTP/2.0 @@ -2623,7 +2574,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9d53260b-6231-4560-bb34-ec12fa621e2e/action","href_result":"/servers/9d53260b-6231-4560-bb34-ec12fa621e2e","id":"a1608e19-1b37-42a6-b1d6-7349b8dc4f10","progress":0,"started_at":"2025-06-10T15:32:25.238450+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/action","href_result":"/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc","id":"5b0304f2-8327-43c8-958d-ad62e36fb923","progress":0,"started_at":"2025-08-07T11:32:19.378348+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -2632,11 +2583,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:25 GMT + - Thu, 07 Aug 2025 11:32:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a1608e19-1b37-42a6-b1d6-7349b8dc4f10 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5b0304f2-8327-43c8-958d-ad62e36fb923 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2644,11 +2595,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac125f5d-9fe8-4349-bd00-0273e0f5266c + - 5bddf183-fe90-46db-b1cd-1c63393b660f status: 202 Accepted code: 202 - duration: 342.739876ms - - id: 53 + duration: 215.095166ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2663,8 +2614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -2674,7 +2625,7 @@ interactions: trailer: {} content_length: 1240 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:24.946587+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:19.209975+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1240" @@ -2683,9 +2634,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:25 GMT + - Thu, 07 Aug 2025 11:32:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2693,11 +2644,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e8c3cf9-9f95-4153-bb85-6a8e5a2a99ea + - 1b81c5a3-d9e2-4ebd-8179-f7f03cd7e8b0 status: 200 OK code: 200 - duration: 220.046009ms - - id: 54 + duration: 123.35525ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2712,8 +2663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -2723,7 +2674,7 @@ interactions: trailer: {} content_length: 1374 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:28.471520+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:21.878675+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1374" @@ -2732,9 +2683,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:30 GMT + - Thu, 07 Aug 2025 11:32:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2742,11 +2693,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64b8cb38-f03c-433a-a446-b99b62e6779e + - a9cfeeee-f4d2-4b7e-80c8-f8eaf546ae7d status: 200 OK code: 200 - duration: 187.421596ms - - id: 55 + duration: 136.615625ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2761,8 +2712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -2772,7 +2723,7 @@ interactions: trailer: {} content_length: 1374 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:28.471520+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:21.878675+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1374" @@ -2781,9 +2732,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:30 GMT + - Thu, 07 Aug 2025 11:32:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2791,11 +2742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2df58f55-3774-40e8-8216-4454463d0529 + - 25750f12-1add-4774-929b-88b40fe6efee status: 200 OK code: 200 - duration: 223.149479ms - - id: 56 + duration: 105.555833ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2810,8 +2761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -2821,7 +2772,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6eea2263-d186-4d96-b1ce-42310c2df1df","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","type":"not_found"}' headers: Content-Length: - "143" @@ -2830,9 +2781,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:30 GMT + - Thu, 07 Aug 2025 11:32:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2840,11 +2791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec203270-f409-42f7-bdfe-97aff759da0f + - 49e043e2-6d1a-4f72-b779-b55a57e32d5b status: 404 Not Found code: 404 - duration: 37.716653ms - - id: 57 + duration: 39.206834ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2859,8 +2810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -2868,20 +2819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 692 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:24.128510Z","id":"cf5ee5fb-f75a-4b57-a31a-1f2520bf663b","product_resource_id":"9d53260b-6231-4560-bb34-ec12fa621e2e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:24.128510Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:31 GMT + - Thu, 07 Aug 2025 11:32:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2889,11 +2840,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cf8e826-43a7-4122-89ee-d191dbf4b34e + - 88a6759a-2c3f-4319-8f30-50f3e330ab24 status: 200 OK code: 200 - duration: 98.13491ms - - id: 58 + duration: 36.326ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2908,8 +2859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/user_data method: GET response: proto: HTTP/2.0 @@ -2928,9 +2879,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:31 GMT + - Thu, 07 Aug 2025 11:32:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2938,11 +2889,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb305414-a565-4be6-a433-a7bf3f6a463a + - e79969e0-e766-48db-831f-97946623854d status: 200 OK code: 200 - duration: 142.528084ms - - id: 59 + duration: 59.080125ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2957,8 +2908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/private_nics method: GET response: proto: HTTP/2.0 @@ -2977,11 +2928,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:31 GMT + - Thu, 07 Aug 2025 11:32:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2989,13 +2940,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 728ec22f-a4c4-440e-8466-67636a8e217d + - 752ce725-d762-45ac-8ee1-cd5e0329ec04 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 90.785848ms - - id: 60 + duration: 60.7815ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3010,8 +2961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -3019,20 +2970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 1943 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:27.626455+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1942" + - "1943" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Thu, 07 Aug 2025 11:32:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3040,11 +2991,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f0ec69f-8f6d-48d1-8833-b5d2eb0a02a4 + - 389e3b6e-c4cf-4907-9c3f-0a7911ab9e3e status: 200 OK code: 200 - duration: 195.556521ms - - id: 61 + duration: 137.002625ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3059,8 +3010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -3070,7 +3021,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"73f90b1e-f889-453f-98a4-2a24439e700a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' headers: Content-Length: - "143" @@ -3079,9 +3030,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Thu, 07 Aug 2025 11:32:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3089,11 +3040,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ffc9ef0-df6a-46ef-a89e-fd22cd2c31f0 + - 0d65e1e6-541b-4e60-9e0e-8b9c48d1cb6e status: 404 Not Found code: 404 - duration: 44.705379ms - - id: 62 + duration: 33.667084ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3108,8 +3059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -3119,7 +3070,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3128,9 +3079,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Thu, 07 Aug 2025 11:32:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3138,11 +3089,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7896664c-bd64-42fd-8c6f-17e19d552021 + - 2a41d933-5927-4e43-842a-8d79b48864ea status: 200 OK code: 200 - duration: 125.565001ms - - id: 63 + duration: 44.218625ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3157,8 +3108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/user_data method: GET response: proto: HTTP/2.0 @@ -3177,9 +3128,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Thu, 07 Aug 2025 11:32:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3187,11 +3138,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff394838-90f5-44e3-a9dd-f3776738d294 + - a652713f-a835-47a6-bdc0-59480c09e34c status: 200 OK code: 200 - duration: 88.185742ms - - id: 64 + duration: 57.360541ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3206,8 +3157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/private_nics method: GET response: proto: HTTP/2.0 @@ -3226,11 +3177,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Thu, 07 Aug 2025 11:32:25 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3238,12 +3189,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61d26a87-92b2-48f8-a37f-a7a3e4502899 + - 04f8bbd0-3c99-4886-9057-dba005045a52 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 137.957532ms + duration: 60.682417ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 479 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "479" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 07 Aug 2025 11:32:25 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: + - d8a4b848-e64c-4a76-b687-c12e1b85903b + status: 200 OK + code: 200 + duration: 152.218333ms - id: 65 request: proto: HTTP/1.1 @@ -3259,8 +3259,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -3268,20 +3268,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 692 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Thu, 07 Aug 2025 11:32:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3289,10 +3289,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8f19570-2953-412a-9691-64852023e3f7 + - 0f3246ca-8cd6-4d87-9335-ced2c3f1d14f status: 200 OK code: 200 - duration: 115.746809ms + duration: 43.09825ms - id: 66 request: proto: HTTP/1.1 @@ -3308,8 +3308,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -3317,20 +3317,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 479 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:24.128510Z","id":"cf5ee5fb-f75a-4b57-a31a-1f2520bf663b","product_resource_id":"9d53260b-6231-4560-bb34-ec12fa621e2e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:24.128510Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:33 GMT + - Thu, 07 Aug 2025 11:32:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3338,10 +3338,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18be21b8-e081-4c19-bf40-f12a7425944b + - 07b1ff21-8e7a-4f72-a59e-58a6b3224648 status: 200 OK code: 200 - duration: 87.127907ms + duration: 235.607667ms - id: 67 request: proto: HTTP/1.1 @@ -3357,8 +3357,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -3368,7 +3368,7 @@ interactions: trailer: {} content_length: 1374 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:28.471520+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:21.878675+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1374" @@ -3377,9 +3377,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:33 GMT + - Thu, 07 Aug 2025 11:32:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3387,10 +3387,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c61acb9-03c4-4472-af4f-b430fd3ac187 + - 8bfda099-5fa0-49d6-b789-d5b94caa116e status: 200 OK code: 200 - duration: 159.450288ms + duration: 103.550125ms - id: 68 request: proto: HTTP/1.1 @@ -3406,8 +3406,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -3417,7 +3417,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6eea2263-d186-4d96-b1ce-42310c2df1df","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","type":"not_found"}' headers: Content-Length: - "143" @@ -3426,9 +3426,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:33 GMT + - Thu, 07 Aug 2025 11:32:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3436,10 +3436,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 339b215e-97d6-453b-8130-ab3e0344597d + - 83833a66-4951-4b7d-b099-146dc069af64 status: 404 Not Found code: 404 - duration: 33.553174ms + duration: 40.138042ms - id: 69 request: proto: HTTP/1.1 @@ -3455,8 +3455,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -3464,20 +3464,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 692 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:24.128510Z","id":"cf5ee5fb-f75a-4b57-a31a-1f2520bf663b","product_resource_id":"9d53260b-6231-4560-bb34-ec12fa621e2e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:24.128510Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:33 GMT + - Thu, 07 Aug 2025 11:32:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3485,10 +3485,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a6b576a-486b-43b8-9e6e-c7b4013b71c2 + - 5e056c6f-ba26-4e96-8cef-fb650955ac22 status: 200 OK code: 200 - duration: 76.11813ms + duration: 44.178166ms - id: 70 request: proto: HTTP/1.1 @@ -3504,8 +3504,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/user_data method: GET response: proto: HTTP/2.0 @@ -3524,9 +3524,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:33 GMT + - Thu, 07 Aug 2025 11:32:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3534,10 +3534,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50d8a6ed-31b7-479d-9389-cde46b93d731 + - 6322edd4-68f5-431e-a3aa-ca474d64b174 status: 200 OK code: 200 - duration: 147.6135ms + duration: 50.058292ms - id: 71 request: proto: HTTP/1.1 @@ -3553,8 +3553,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/private_nics method: GET response: proto: HTTP/2.0 @@ -3573,11 +3573,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:33 GMT + - Thu, 07 Aug 2025 11:32:26 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3585,12 +3585,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4328c26c-8fbd-49fb-a5f9-5896720646d5 + - 8d10afbc-151e-4947-aa96-0537086bc412 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.570562ms + duration: 54.193958ms - id: 72 request: proto: HTTP/1.1 @@ -3606,8 +3606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -3617,7 +3617,7 @@ interactions: trailer: {} content_length: 1374 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:28.471520+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:21.878675+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1374" @@ -3626,9 +3626,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:34 GMT + - Thu, 07 Aug 2025 11:32:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3636,10 +3636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5b0a779-41d1-40f3-a6eb-75cc78177c32 + - d0e593ce-1207-45b7-b711-e2b5ae8b3501 status: 200 OK code: 200 - duration: 166.311396ms + duration: 136.506875ms - id: 73 request: proto: HTTP/1.1 @@ -3655,8 +3655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -3664,20 +3664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 692 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":null,"name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:24.128510Z","id":"cf5ee5fb-f75a-4b57-a31a-1f2520bf663b","product_resource_id":"9d53260b-6231-4560-bb34-ec12fa621e2e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:24.128510Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:34 GMT + - Thu, 07 Aug 2025 11:32:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3685,10 +3685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b3d4749-f5f0-4931-87cd-4b0bad7118b0 + - 5776ed2a-956e-4b1b-ad98-c3cf064acb94 status: 200 OK code: 200 - duration: 93.240651ms + duration: 68.972875ms - id: 74 request: proto: HTTP/1.1 @@ -3706,8 +3706,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/action method: POST response: proto: HTTP/2.0 @@ -3717,7 +3717,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/9d53260b-6231-4560-bb34-ec12fa621e2e/action","href_result":"/servers/9d53260b-6231-4560-bb34-ec12fa621e2e","id":"0f78659e-c506-4541-8724-aac22ca02858","progress":0,"started_at":"2025-06-10T15:32:35.052207+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/action","href_result":"/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc","id":"907d061c-caaf-4dd7-be28-5269e621876f","progress":0,"started_at":"2025-08-07T11:32:27.047967+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -3726,11 +3726,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:35 GMT + - Thu, 07 Aug 2025 11:32:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0f78659e-c506-4541-8724-aac22ca02858 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/907d061c-caaf-4dd7-be28-5269e621876f Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3738,10 +3738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f708347-f497-471a-88a7-4614149e1a77 + - 938d66b0-a054-4905-be37-143c7da566bc status: 202 Accepted code: 202 - duration: 322.283863ms + duration: 333.809541ms - id: 75 request: proto: HTTP/1.1 @@ -3757,8 +3757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -3768,7 +3768,7 @@ interactions: trailer: {} content_length: 1334 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1334" @@ -3777,9 +3777,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:35 GMT + - Thu, 07 Aug 2025 11:32:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3787,10 +3787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 708be93b-d1d5-4eac-bc2f-c5571111f7c0 + - 6bd8c9f0-bcb2-49c1-a43d-35f685f3d9b4 status: 200 OK code: 200 - duration: 173.237946ms + duration: 114.849959ms - id: 76 request: proto: HTTP/1.1 @@ -3806,8 +3806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -3817,7 +3817,7 @@ interactions: trailer: {} content_length: 1334 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1334" @@ -3826,9 +3826,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Thu, 07 Aug 2025 11:32:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3836,10 +3836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d119781b-b5d2-4bb8-8f40-7ec6d904c1ec + - e48b8cdf-97dd-4b9f-8d89-aa1d77a18711 status: 200 OK code: 200 - duration: 189.122374ms + duration: 115.756167ms - id: 77 request: proto: HTTP/1.1 @@ -3855,8 +3855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -3866,7 +3866,7 @@ interactions: trailer: {} content_length: 1334 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1334" @@ -3875,9 +3875,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Thu, 07 Aug 2025 11:32:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3885,10 +3885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fd5c356-6233-4433-a502-f83275d03fd7 + - 35976cd3-4e82-491e-b8a0-084e208bab5a status: 200 OK code: 200 - duration: 189.175245ms + duration: 114.702666ms - id: 78 request: proto: HTTP/1.1 @@ -3904,8 +3904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -3915,7 +3915,7 @@ interactions: trailer: {} content_length: 1334 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1334" @@ -3924,9 +3924,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:50 GMT + - Thu, 07 Aug 2025 11:32:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3934,10 +3934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9aedb6da-0978-405a-9879-c52a94e039b4 + - bb4bcaff-9ab6-456c-b5f5-b5c763efc645 status: 200 OK code: 200 - duration: 165.058946ms + duration: 120.58025ms - id: 79 request: proto: HTTP/1.1 @@ -3953,8 +3953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -3964,7 +3964,7 @@ interactions: trailer: {} content_length: 1334 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1334" @@ -3973,9 +3973,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:56 GMT + - Thu, 07 Aug 2025 11:32:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3983,10 +3983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 499fb3b1-6bea-4e42-8f44-e806c1799a5a + - 272a2ee5-43c7-46c4-989f-68bc92a25afa status: 200 OK code: 200 - duration: 209.463781ms + duration: 125.957375ms - id: 80 request: proto: HTTP/1.1 @@ -4002,8 +4002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -4011,20 +4011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1334 + content_length: 1420 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1334" + - "1420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:01 GMT + - Thu, 07 Aug 2025 11:32:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4032,10 +4032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1effea80-df9a-45a4-a50e-af7067b8dc69 + - 234e3d06-7728-4dce-80df-94cc9127390d status: 200 OK code: 200 - duration: 193.29092ms + duration: 130.945833ms - id: 81 request: proto: HTTP/1.1 @@ -4051,8 +4051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -4062,7 +4062,7 @@ interactions: trailer: {} content_length: 1334 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1334" @@ -4071,9 +4071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:06 GMT + - Thu, 07 Aug 2025 11:32:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4081,10 +4081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd015e67-1fae-4bbb-8a27-4284fbaf878b + - eebae07a-8efa-4a28-8d20-7c0ea7964081 status: 200 OK code: 200 - duration: 209.789221ms + duration: 124.359459ms - id: 82 request: proto: HTTP/1.1 @@ -4100,106 +4100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1334 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:33: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: - - 97c9be84-e5b7-4d5e-a2ff-25c0583c22a0 - status: 200 OK - code: 200 - duration: 168.871154ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1334 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"1001","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:32:34.833908+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:33: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: - - 55fe1c2d-f053-43e6-b83e-f462267167b2 - status: 200 OK - code: 200 - duration: 193.180042ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -4209,7 +4111,7 @@ interactions: trailer: {} content_length: 1218 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:33:18.464026+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:33:01.749738+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1218" @@ -4218,9 +4120,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:21 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4228,11 +4130,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e92777cb-389f-4241-a2b8-177fab5dad57 + - a28599da-682b-4e86-8c8d-765ccf098681 status: 200 OK code: 200 - duration: 237.155992ms - - id: 85 + duration: 137.598833ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4247,8 +4149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -4258,7 +4160,7 @@ interactions: trailer: {} content_length: 1218 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:32:24.237264+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"9d53260b-6231-4560-bb34-ec12fa621e2e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:91","maintenances":[],"modification_date":"2025-06-10T15:33:18.464026+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6eea2263-d186-4d96-b1ce-42310c2df1df","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:33:01.749738+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1218" @@ -4267,9 +4169,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4277,11 +4179,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb044f35-dcab-4ab5-9edb-5e28c713a760 + - 409061cd-1080-4787-856b-08a1206fa9d9 status: 200 OK code: 200 - duration: 270.561319ms - - id: 86 + duration: 152.586125ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4296,8 +4198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: DELETE response: proto: HTTP/2.0 @@ -4314,9 +4216,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4324,11 +4226,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - feb6f290-fd40-44c6-986a-6c33e6588b58 + - fcb1c40a-b984-4e7c-845f-8648a3663bd2 status: 204 No Content code: 204 - duration: 388.463017ms - - id: 87 + duration: 202.799375ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4343,8 +4245,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -4354,7 +4256,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9d53260b-6231-4560-bb34-ec12fa621e2e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","type":"not_found"}' headers: Content-Length: - "143" @@ -4363,9 +4265,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:22 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4373,11 +4275,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27eb274e-af46-4b34-ab27-82d3ba6d1c55 + - c445ca9d-4271-43b4-9a31-d209b0520065 status: 404 Not Found code: 404 - duration: 259.356767ms - - id: 88 + duration: 117.771ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4392,8 +4294,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -4403,7 +4305,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6eea2263-d186-4d96-b1ce-42310c2df1df","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","type":"not_found"}' headers: Content-Length: - "143" @@ -4412,9 +4314,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:23 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4422,11 +4324,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 842da80f-c06a-41ec-9622-755395772ad9 + - 718f8389-4a93-432e-bdc7-bceef3649231 status: 404 Not Found code: 404 - duration: 102.741507ms - - id: 89 + duration: 36.90025ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4441,8 +4343,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -4450,20 +4352,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 485 uncompressed: false - body: '{"created_at":"2025-06-10T15:32:18.277391Z","id":"6eea2263-d186-4d96-b1ce-42310c2df1df","last_detached_at":"2025-06-10T15:33:22.700905Z","name":"tf-volume-youthful-moore","parent_snapshot_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:33:22.700905Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":"2025-08-07T11:33:03.553444Z","name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:33:03.553444Z","zone":"fr-par-1"}' headers: Content-Length: - - "481" + - "485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:23 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4471,11 +4373,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 528c35cf-ad2d-45be-8d3d-7e7fbc1069d9 + - d0fe11d5-477b-452c-8b65-303692d4d949 status: 200 OK code: 200 - duration: 197.287355ms - - id: 90 + duration: 38.175583ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4490,8 +4392,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: DELETE response: proto: HTTP/2.0 @@ -4508,9 +4410,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:23 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4518,11 +4420,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63894231-8763-48e6-a78a-ec2b870b5391 + - 843e12fd-87f0-404c-b836-ba161899d409 status: 204 No Content code: 204 - duration: 151.103864ms - - id: 91 + duration: 64.974958ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4537,8 +4439,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6eea2263-d186-4d96-b1ce-42310c2df1df + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc method: GET response: proto: HTTP/2.0 @@ -4548,7 +4450,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"6eea2263-d186-4d96-b1ce-42310c2df1df","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","type":"not_found"}' headers: Content-Length: - "127" @@ -4557,9 +4459,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:23 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4567,11 +4469,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 133e5aa3-f2b0-436a-b81d-8e4c1a50f68c + - bead8475-dd65-4ea2-81c0-26c855b92c65 status: 404 Not Found code: 404 - duration: 148.571284ms - - id: 92 + duration: 38.333166ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4586,8 +4488,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -4595,20 +4497,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 479 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:31.137450Z","id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","name":"tf-snapshot-blissful-fermi","parent_volume":{"id":"73f90b1e-f889-453f-98a4-2a24439e700a","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:31.137450Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:23 GMT + - Thu, 07 Aug 2025 11:33:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4616,11 +4518,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55c94611-0cec-4b0f-85eb-a95dbddd79d5 + - 51418e0c-0cf7-4e50-b740-5220eeaf0b63 status: 200 OK code: 200 - duration: 204.332797ms - - id: 93 + duration: 137.549625ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4635,8 +4537,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: DELETE response: proto: HTTP/2.0 @@ -4653,9 +4555,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:23 GMT + - Thu, 07 Aug 2025 11:33:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4663,11 +4565,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1f1c6d0-a1ea-4d68-8663-fb4f7e166959 + - 167423f5-1bea-4ed1-85cb-3a56e5dad3f6 status: 204 No Content code: 204 - duration: 211.737834ms - - id: 94 + duration: 121.24825ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4682,8 +4584,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/2427ed2b-b404-4a23-8c2e-ee3c0815332f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda method: GET response: proto: HTTP/2.0 @@ -4693,7 +4595,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"2427ed2b-b404-4a23-8c2e-ee3c0815332f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"c89555af-f109-43ec-9480-1b0713af1bda","type":"not_found"}' headers: Content-Length: - "129" @@ -4702,9 +4604,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:24 GMT + - Thu, 07 Aug 2025 11:33:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4712,11 +4614,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a546342-fabe-48fe-b360-7112c9a7715b + - 3edf8e61-2b1e-441c-8eb1-0d763b11ffed status: 404 Not Found code: 404 - duration: 92.123935ms - - id: 95 + duration: 40.313083ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4731,8 +4633,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -4740,20 +4642,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1942 + content_length: 1943 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:31:27.626455+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1942" + - "1943" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:24 GMT + - Thu, 07 Aug 2025 11:33:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4761,11 +4663,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9202466-d5f5-409c-a410-89afdb681c61 + - 2efff3cc-f057-4e7b-ba31-033238974f3c status: 200 OK code: 200 - duration: 237.972453ms - - id: 96 + duration: 122.813333ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4780,8 +4682,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -4791,7 +4693,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.970480Z","id":"ec0d2768-96ef-4463-bf4b-9054a03d7c30","product_resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.970480Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -4800,9 +4702,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:24 GMT + - Thu, 07 Aug 2025 11:33:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4810,11 +4712,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47714d89-09c5-4970-92e3-648e2b62e84d + - a982b4e3-6620-487a-a45a-11839f836b8b status: 200 OK code: 200 - duration: 83.833197ms - - id: 97 + duration: 38.443541ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4831,8 +4733,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/action method: POST response: proto: HTTP/2.0 @@ -4842,7 +4744,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29/action","href_result":"/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29","id":"c8d045a2-d953-4b2a-8994-a476a43dabdd","progress":0,"started_at":"2025-06-10T15:33:24.657729+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/action","href_result":"/servers/4a339f70-270e-4835-bc57-063d2e1f2da9","id":"125ba168-0f9f-4c17-b6d2-e8858ec7139c","progress":0,"started_at":"2025-08-07T11:33:04.649153+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -4851,11 +4753,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:24 GMT + - Thu, 07 Aug 2025 11:33:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c8d045a2-d953-4b2a-8994-a476a43dabdd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/125ba168-0f9f-4c17-b6d2-e8858ec7139c Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4863,11 +4765,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e32c167-7de1-4b64-b898-1f74de6c7849 + - bf520554-d3ae-4cf1-af5f-4655dfd291a8 status: 202 Accepted code: 202 - duration: 264.613215ms - - id: 98 + duration: 397.376958ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4882,8 +4784,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -4891,20 +4793,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1903 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:33:24.446374+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:04.303665+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1902" + - "1903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:24 GMT + - Thu, 07 Aug 2025 11:33:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4912,11 +4814,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 483a3566-9d0b-4803-b4f5-9fc586481d3e + - f12e0eb8-454f-4067-b432-b7269781a063 status: 200 OK code: 200 - duration: 217.257245ms - - id: 99 + duration: 134.289625ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4931,8 +4833,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -4940,20 +4842,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1903 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:33:24.446374+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:04.303665+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1902" + - "1903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:30 GMT + - Thu, 07 Aug 2025 11:33:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4961,11 +4863,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60cda35f-d4a0-446b-b8a0-4b427e151b2f + - 62bf2624-3fe2-47f3-bf16-91fc54204b88 status: 200 OK code: 200 - duration: 202.217911ms - - id: 100 + duration: 140.40475ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4980,8 +4882,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -4989,20 +4891,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1903 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:33:24.446374+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:04.303665+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1902" + - "1903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:35 GMT + - Thu, 07 Aug 2025 11:33:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5010,11 +4912,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 612bdd83-bf30-4f54-9d9d-fe1377bbaf20 + - be6beeaa-8645-49db-a58a-e9747e1d3ad4 status: 200 OK code: 200 - duration: 183.553137ms - - id: 101 + duration: 112.025375ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -5029,8 +4931,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -5038,20 +4940,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1903 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:33:24.446374+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:04.303665+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1902" + - "1903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:40 GMT + - Thu, 07 Aug 2025 11:33:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5059,11 +4961,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aae7432-7ff0-4479-ad64-904921423b42 + - 4bfde177-ac38-4c08-8475-4675c7f1254f status: 200 OK code: 200 - duration: 176.501873ms - - id: 102 + duration: 156.647166ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5078,8 +4980,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -5089,7 +4991,7 @@ interactions: trailer: {} content_length: 1786 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:33:40.182939+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:20.229497+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1786" @@ -5098,9 +5000,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:45 GMT + - Thu, 07 Aug 2025 11:33:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5108,11 +5010,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2996c414-b1bf-4fd1-92e0-069c85806b7e + - d4569c9a-1882-417a-9661-7eab42bbb759 status: 200 OK code: 200 - duration: 190.942394ms - - id: 103 + duration: 129.736834ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5127,8 +5029,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -5138,7 +5040,7 @@ interactions: trailer: {} content_length: 1786 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:31:12.780734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:7b","maintenances":[],"modification_date":"2025-06-10T15:33:40.182939+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"73f90b1e-f889-453f-98a4-2a24439e700a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:20.229497+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1786" @@ -5147,9 +5049,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:45 GMT + - Thu, 07 Aug 2025 11:33:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5157,11 +5059,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8880909b-ca01-4ebf-90f4-01e4ff8d6c95 + - dfc8cbc8-ef2e-4c3a-8b34-f53145fc1056 status: 200 OK code: 200 - duration: 213.270818ms - - id: 104 + duration: 138.482333ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5176,8 +5078,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: DELETE response: proto: HTTP/2.0 @@ -5194,9 +5096,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:46 GMT + - Thu, 07 Aug 2025 11:33:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5204,11 +5106,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adbaafbb-8599-41fa-a36e-8b7f4ee40bd5 + - 75a906f6-da96-4583-b547-10c673b3e741 status: 204 No Content code: 204 - duration: 258.105378ms - - id: 105 + duration: 184.498375ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5223,8 +5125,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -5234,7 +5136,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","type":"not_found"}' headers: Content-Length: - "143" @@ -5243,9 +5145,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:46 GMT + - Thu, 07 Aug 2025 11:33:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5253,11 +5155,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c615485e-3fd9-4673-aec1-89c462c64157 + - 3cf8364e-15c9-4c02-8eac-4c4f547d61ee status: 404 Not Found code: 404 - duration: 139.595651ms - - id: 106 + duration: 180.954875ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5272,8 +5174,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -5283,7 +5185,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"73f90b1e-f889-453f-98a4-2a24439e700a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' headers: Content-Length: - "143" @@ -5292,9 +5194,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:46 GMT + - Thu, 07 Aug 2025 11:33:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5302,11 +5204,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 573d069c-e17c-495f-b103-d32f1d84ccdd + - 0c7656f0-39ff-49b8-a62c-23a08e4c396a status: 404 Not Found code: 404 - duration: 30.198052ms - - id: 107 + duration: 39.465584ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5321,8 +5223,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: GET response: proto: HTTP/2.0 @@ -5332,7 +5234,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.970480Z","id":"73f90b1e-f889-453f-98a4-2a24439e700a","last_detached_at":"2025-06-10T15:33:46.218142Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:33:46.218142Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":"2025-08-07T11:33:25.757170Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:33:25.757170Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -5341,9 +5243,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:46 GMT + - Thu, 07 Aug 2025 11:33:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5351,11 +5253,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4562e8b-808b-460e-bc64-a6aebbf902c5 + - 3eab9bde-196f-4720-a971-06a4a13a5264 status: 200 OK code: 200 - duration: 82.920415ms - - id: 108 + duration: 44.032208ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5370,8 +5272,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/73f90b1e-f889-453f-98a4-2a24439e700a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 method: DELETE response: proto: HTTP/2.0 @@ -5388,9 +5290,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:46 GMT + - Thu, 07 Aug 2025 11:33:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5398,11 +5300,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3918cd2-f5c2-473a-86d9-83b2a1578def + - 8569fd20-38b7-461f-875c-44c34c2d9ef3 status: 204 No Content code: 204 - duration: 161.30301ms - - id: 109 + duration: 68.775834ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5417,8 +5319,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9d53260b-6231-4560-bb34-ec12fa621e2e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc method: GET response: proto: HTTP/2.0 @@ -5428,7 +5330,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9d53260b-6231-4560-bb34-ec12fa621e2e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","type":"not_found"}' headers: Content-Length: - "143" @@ -5437,9 +5339,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:46 GMT + - Thu, 07 Aug 2025 11:33:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5447,11 +5349,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4db7134-1bbd-42c2-9060-d539c31dac93 + - a969c656-c101-41bf-b9f9-fab7a34dac58 status: 404 Not Found code: 404 - duration: 91.070038ms - - id: 110 + duration: 72.833333ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5466,8 +5368,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c23e852-0ca4-40b2-984b-a37e725d3a29 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 method: GET response: proto: HTTP/2.0 @@ -5477,7 +5379,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4c23e852-0ca4-40b2-984b-a37e725d3a29","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","type":"not_found"}' headers: Content-Length: - "143" @@ -5486,9 +5388,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:46 GMT + - Thu, 07 Aug 2025 11:33:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5496,7 +5398,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bec32ba4-9c7e-49c8-bb24-9317f9a623ee + - b8d9a943-1402-4a05-be3b-4da890ce1928 status: 404 Not Found code: 404 - duration: 95.994293ms + duration: 92.773333ms From 0af2be2b8c0fe00bdc872edf9ae51478cc0e7ec5 Mon Sep 17 00:00:00 2001 From: Laure Masson Date: Thu, 7 Aug 2025 15:05:34 +0200 Subject: [PATCH 7/9] fix forceNew add Locality to customDiff --- internal/services/block/helpers_block.go | 5 +++++ internal/services/block/volume.go | 18 ++++++++---------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/internal/services/block/helpers_block.go b/internal/services/block/helpers_block.go index 9f18e1d57e..c3faa77635 100644 --- a/internal/services/block/helpers_block.go +++ b/internal/services/block/helpers_block.go @@ -9,6 +9,7 @@ import ( block "github.com/scaleway/scaleway-sdk-go/api/block/v1alpha1" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" "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/zonal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" @@ -63,6 +64,10 @@ func customDiffSnapshot(key string) schema.CustomizeDiffFunc { } oldValue, newValue := diff.GetChange(key) + if dsf.Locality(key, oldValue.(string), newValue.(string), nil) { + return nil + } + blockAPI := block.NewAPI(meta.ExtractScwClient(i)) _, err := blockAPI.GetSnapshot(&block.GetSnapshotRequest{ diff --git a/internal/services/block/volume.go b/internal/services/block/volume.go index d2fe18757a..94366a9fce 100644 --- a/internal/services/block/volume.go +++ b/internal/services/block/volume.go @@ -7,8 +7,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" block "github.com/scaleway/scaleway-sdk-go/api/block/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/logger" "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/zonal" @@ -52,11 +52,9 @@ func ResourceVolume() *schema.Resource { Description: "The volume size in GB", }, "snapshot_id": { - Type: schema.TypeString, - Optional: true, - ForceNew: true, - Description: "The snapshot to create the volume from", - DiffSuppressFunc: dsf.Locality, + Type: schema.TypeString, + Optional: true, + Description: "The snapshot to create the volume from", }, "instance_volume_id": { Type: schema.TypeString, @@ -175,14 +173,14 @@ func ResourceBlockVolumeRead(ctx context.Context, d *schema.ResourceData, m any) snapshotID := "" if volume.ParentSnapshotID != nil { - id := *volume.ParentSnapshotID + logger.Debugf("found snapshot In READ %s", volume.ParentSnapshotID) _, err := api.GetSnapshot(&block.GetSnapshotRequest{ - SnapshotID: id, + SnapshotID: *volume.ParentSnapshotID, Zone: zone, }) - if !httperrors.Is403(err) && !httperrors.Is404(err) { - snapshotID = zonal.NewIDString(zone, id) + if err == nil || (!httperrors.Is403(err) && !httperrors.Is404(err)) { + snapshotID = zonal.NewIDString(zone, *volume.ParentSnapshotID) } } From eb569f6e662a2b5a5665072270daed54cc164bb6 Mon Sep 17 00:00:00 2001 From: Laure Masson Date: Thu, 7 Aug 2025 15:23:47 +0200 Subject: [PATCH 8/9] fix forceNew add Locality to customDiff --- internal/services/block/helpers_block.go | 5 ++++- internal/services/block/volume.go | 10 +++++----- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/internal/services/block/helpers_block.go b/internal/services/block/helpers_block.go index c3faa77635..aeb3f5449e 100644 --- a/internal/services/block/helpers_block.go +++ b/internal/services/block/helpers_block.go @@ -11,6 +11,7 @@ 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/zonal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/instancehelpers" @@ -69,9 +70,11 @@ func customDiffSnapshot(key string) schema.CustomizeDiffFunc { } blockAPI := block.NewAPI(meta.ExtractScwClient(i)) + zone, id, _ := locality.ParseLocalizedID(oldValue.(string)) _, err := blockAPI.GetSnapshot(&block.GetSnapshotRequest{ - SnapshotID: oldValue.(string), + SnapshotID: id, + Zone: scw.Zone(zone), }) if (httperrors.Is403(err) || httperrors.Is404(err)) && newValue == "" { return nil diff --git a/internal/services/block/volume.go b/internal/services/block/volume.go index 94366a9fce..09c0e0bdc6 100644 --- a/internal/services/block/volume.go +++ b/internal/services/block/volume.go @@ -7,8 +7,8 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" block "github.com/scaleway/scaleway-sdk-go/api/block/v1alpha1" - "github.com/scaleway/scaleway-sdk-go/logger" "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/zonal" @@ -52,9 +52,10 @@ func ResourceVolume() *schema.Resource { Description: "The volume size in GB", }, "snapshot_id": { - Type: schema.TypeString, - Optional: true, - Description: "The snapshot to create the volume from", + Type: schema.TypeString, + Optional: true, + Description: "The snapshot to create the volume from", + DiffSuppressFunc: dsf.Locality, }, "instance_volume_id": { Type: schema.TypeString, @@ -173,7 +174,6 @@ func ResourceBlockVolumeRead(ctx context.Context, d *schema.ResourceData, m any) snapshotID := "" if volume.ParentSnapshotID != nil { - logger.Debugf("found snapshot In READ %s", volume.ParentSnapshotID) _, err := api.GetSnapshot(&block.GetSnapshotRequest{ SnapshotID: *volume.ParentSnapshotID, Zone: zone, From 2e5c14fcd180ffe81dc393847f9423b80d314371 Mon Sep 17 00:00:00 2001 From: Laure-di <62625835+Laure-di@users.noreply.github.com> Date: Thu, 7 Aug 2025 16:00:46 +0200 Subject: [PATCH 9/9] Delete tests/dev.tfrc --- tests/dev.tfrc | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 tests/dev.tfrc diff --git a/tests/dev.tfrc b/tests/dev.tfrc deleted file mode 100644 index 50dda26aa0..0000000000 --- a/tests/dev.tfrc +++ /dev/null @@ -1,12 +0,0 @@ -provider_installation { - dev_overrides { - "scaleway/scaleway" = "/Users/lmasson/go/bin" - } - - # For all other providers, install them directly from their origin provider - # registries as normal. If you omit this, Terraform will _only_ use - # the dev_overrides block, and so no other providers will be available. - direct {} -} - -