From f0d34ef82fbb0ac2aaf50420ffec44ae4c32ca4a Mon Sep 17 00:00:00 2001 From: Mia-Cross Date: Mon, 18 Mar 2024 08:23:38 +0100 Subject: [PATCH] fix(object): lifecycle: fix case with no tags and no prefix (#2463) --- scaleway/resource_object_bucket.go | 23 +- scaleway/resource_object_bucket_test.go | 30 + .../object-bucket-lifecycle.cassette.yaml | 2404 +++++++++++------ 3 files changed, 1638 insertions(+), 819 deletions(-) diff --git a/scaleway/resource_object_bucket.go b/scaleway/resource_object_bucket.go index 6687da68c..52a1b820b 100644 --- a/scaleway/resource_object_bucket.go +++ b/scaleway/resource_object_bucket.go @@ -355,20 +355,21 @@ func resourceBucketLifecycleUpdate(ctx context.Context, conn *s3.S3, d *schema.R ruleHasPrefix := len(r["prefix"].(string)) > 0 filter := &s3.LifecycleRuleFilter{} + if len(tags) > 1 || (ruleHasPrefix && len(tags) == 1) { + lifecycleRuleAndOp := &s3.LifecycleRuleAndOperator{} + lifecycleRuleAndOp.SetTags(tags) + if ruleHasPrefix { + lifecycleRuleAndOp.SetPrefix(r["prefix"].(string)) + } + filter.SetAnd(lifecycleRuleAndOp) + } + if !ruleHasPrefix && len(tags) == 1 { filter.SetTag(tags[0]) - } else { - if len(tags) == 0 && ruleHasPrefix { - filter.SetPrefix(r["prefix"].(string)) - } else { - lifecycleRuleAndOp := &s3.LifecycleRuleAndOperator{} - lifecycleRuleAndOp.SetTags(tags) - if ruleHasPrefix { - lifecycleRuleAndOp.SetPrefix(r["prefix"].(string)) - } - filter.SetAnd(lifecycleRuleAndOp) - } + } else if ruleHasPrefix && len(tags) == 0 { + filter.SetPrefix(r["prefix"].(string)) } + rule.SetFilter(filter) // ID diff --git a/scaleway/resource_object_bucket_test.go b/scaleway/resource_object_bucket_test.go index 8cf88b311..f50f59170 100644 --- a/scaleway/resource_object_bucket_test.go +++ b/scaleway/resource_object_bucket_test.go @@ -378,6 +378,36 @@ func TestAccScalewayObjectBucket_Lifecycle(t *testing.T) { resource.TestCheckResourceAttr(resourceNameLifecycle, "lifecycle_rule.0.expiration.0.days", "1"), ), }, + { + Config: fmt.Sprintf(` + resource "scaleway_object_bucket" "main-bucket-lifecycle" { + name = "%s" + region = "%s" + object_lock_enabled = true + + lifecycle_rule { + enabled = true + prefix = "" + expiration { + days = 2 + } + } + + lifecycle_rule { + enabled = true + abort_incomplete_multipart_upload_days = 30 + } + }`, bucketLifecycle, objectTestsMainRegion), + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main-bucket-lifecycle", true), + testAccCheckScalewayObjectBucketLifecycleConfigurationExists(tt, resourceNameLifecycle), + resource.TestCheckResourceAttrSet(resourceNameLifecycle, "lifecycle_rule.0.id"), + resource.TestCheckResourceAttrSet(resourceNameLifecycle, "lifecycle_rule.1.id"), + resource.TestCheckResourceAttr(resourceNameLifecycle, "lifecycle_rule.0.prefix", ""), + resource.TestCheckResourceAttr(resourceNameLifecycle, "lifecycle_rule.0.expiration.0.days", "2"), + resource.TestCheckResourceAttr(resourceNameLifecycle, "lifecycle_rule.1.abort_incomplete_multipart_upload_days", "30"), + ), + }, }, }) } diff --git a/scaleway/testdata/object-bucket-lifecycle.cassette.yaml b/scaleway/testdata/object-bucket-lifecycle.cassette.yaml index c17731303..a86f57754 100644 --- a/scaleway/testdata/object-bucket-lifecycle.cassette.yaml +++ b/scaleway/testdata/object-bucket-lifecycle.cassette.yaml @@ -16,8 +16,8 @@ interactions: X-Amz-Content-Sha256: - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d X-Amz-Date: - - 20240313T145449Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142458Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Wed, 13 Mar 2024 14:54:49 GMT + - Fri, 15 Mar 2024 14:24:59 GMT Location: - - /test-acc-scaleway-object-bucket-lifecycle-6135316300084282876 + - /test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 X-Amz-Id-2: - - txg0cd7aaefbd0c46d29175-0065f1be39 + - txgcf6dfb34234441bcaa35-0065f45a3b X-Amz-Request-Id: - - txg0cd7aaefbd0c46d29175-0065f1be39 + - txgcf6dfb34234441bcaa35-0065f45a3b status: 200 OK code: 200 duration: "" @@ -48,8 +48,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142459Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -57,29 +57,29 @@ interactions: Content-Length: - "0" Date: - - Wed, 13 Mar 2024 14:54:50 GMT + - Fri, 15 Mar 2024 14:24:59 GMT X-Amz-Id-2: - - txg645e88fadab2436992b8-0065f1be3a + - txg7aae2442007e40eb98ae-0065f45a3b X-Amz-Request-Id: - - txg645e88fadab2436992b8-0065f1be3a + - txg7aae2442007e40eb98ae-0065f45a3b status: 200 OK code: 200 duration: "" - request: - body: 365path1/id1Enabled30GLACIER + body: id1Enabled30GLACIER365path1/ form: {} headers: Content-Length: - "303" Content-Md5: - - LlQ8ZaZi/ACKYEQx3dDLPg== + - ZD1io2mpIqrUW2I6HbMkRw== User-Agent: - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) X-Amz-Content-Sha256: - - 9b46c25d8077b9145b6fbb5c6ad09be8defd33ee8323ce63b7d3af82564f1398 + - 791a9275ffdca3ee3e2fc101035982c8ccb25cd96c8b1b8b4a4fea272bc3c3a5 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142500Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: PUT response: body: "" @@ -87,11 +87,11 @@ interactions: Content-Length: - "0" Date: - - Wed, 13 Mar 2024 14:54:50 GMT + - Fri, 15 Mar 2024 14:25:00 GMT X-Amz-Id-2: - - txgf5243c2c5ce0448bb119-0065f1be3a + - txg24f5ffd27a8d46939e0a-0065f45a3c X-Amz-Request-Id: - - txgf5243c2c5ce0448bb119-0065f1be3a + - txg24f5ffd27a8d46939e0a-0065f45a3c status: 200 OK code: 200 duration: "" @@ -104,24 +104,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142500Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:50 GMT + - Fri, 15 Mar 2024 14:25:00 GMT X-Amz-Id-2: - - txg56b71ccf0cf243539d4b-0065f1be3a + - txg39de463ab96c4e928e65-0065f45a3c X-Amz-Request-Id: - - txg56b71ccf0cf243539d4b-0065f1be3a + - txg39de463ab96c4e928e65-0065f45a3c status: 200 OK code: 200 duration: "" @@ -134,23 +134,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142500Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgc1939c1267614b97893c-0065f1be3a + Lock configuration does not exist for this buckettxg31d0fe1c5d12434396ba-0065f45a3ctxg31d0fe1c5d12434396ba-0065f45a3c/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:50 GMT + - Fri, 15 Mar 2024 14:25:00 GMT X-Amz-Id-2: - - txgc1939c1267614b97893c-0065f1be3a + - txg31d0fe1c5d12434396ba-0065f45a3c X-Amz-Request-Id: - - txgc1939c1267614b97893c-0065f1be3a + - txg31d0fe1c5d12434396ba-0065f45a3c status: 404 Not Found code: 404 duration: "" @@ -163,24 +163,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142500Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:50 GMT + - Fri, 15 Mar 2024 14:25:00 GMT X-Amz-Id-2: - - txgbc9d834a381b4e03977f-0065f1be3a + - txgf32cf93cf2d6452189aa-0065f45a3c X-Amz-Request-Id: - - txgbc9d834a381b4e03977f-0065f1be3a + - txgf32cf93cf2d6452189aa-0065f45a3c status: 200 OK code: 200 duration: "" @@ -193,22 +193,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142500Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg0451640b46814663b176-0065f1be3a + body: NoSuchTagSetThe TagSet does not existtxg3010eb3850d24475bf47-0065f45a3ctxg3010eb3850d24475bf47-0065f45a3c/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:50 GMT + - Fri, 15 Mar 2024 14:25:00 GMT X-Amz-Id-2: - - txg0451640b46814663b176-0065f1be3a + - txg3010eb3850d24475bf47-0065f45a3c X-Amz-Request-Id: - - txg0451640b46814663b176-0065f1be3a + - txg3010eb3850d24475bf47-0065f45a3c status: 404 Not Found code: 404 duration: "" @@ -221,23 +221,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142500Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg2effeaf7681648768cb3-0065f1be3a + does not existtxg746fc8fd7cb14ad295dc-0065f45a3ctxg746fc8fd7cb14ad295dc-0065f45a3c/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:50 GMT + - Fri, 15 Mar 2024 14:25:00 GMT X-Amz-Id-2: - - txg2effeaf7681648768cb3-0065f1be3a + - txg746fc8fd7cb14ad295dc-0065f45a3c X-Amz-Request-Id: - - txg2effeaf7681648768cb3-0065f1be3a + - txg746fc8fd7cb14ad295dc-0065f45a3c status: 404 Not Found code: 404 duration: "" @@ -250,8 +250,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142500Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -263,11 +263,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:50 GMT + - Fri, 15 Mar 2024 14:25:00 GMT X-Amz-Id-2: - - txg516f64f80f8048d5bcba-0065f1be3a + - txg54b3dc0b92114911a78b-0065f45a3c X-Amz-Request-Id: - - txg516f64f80f8048d5bcba-0065f1be3a + - txg54b3dc0b92114911a78b-0065f45a3c status: 200 OK code: 200 duration: "" @@ -280,8 +280,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145450Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142500Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled365path1/id1Enabled - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:51 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txgc2425d6118064fc5bb6e-0065f1be3b + - txg81f739467c124c24a377-0065f45a3d X-Amz-Request-Id: - - txgc2425d6118064fc5bb6e-0065f1be3b + - txg81f739467c124c24a377-0065f45a3d status: 200 OK code: 200 duration: "" @@ -396,23 +396,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145451Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142501Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgc75c3fa44ee44b2e8602-0065f1be3b + Lock configuration does not exist for this buckettxg89b02e8f47cd474f87e5-0065f45a3dtxg89b02e8f47cd474f87e5-0065f45a3d/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:51 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txgc75c3fa44ee44b2e8602-0065f1be3b + - txg89b02e8f47cd474f87e5-0065f45a3d X-Amz-Request-Id: - - txgc75c3fa44ee44b2e8602-0065f1be3b + - txg89b02e8f47cd474f87e5-0065f45a3d status: 404 Not Found code: 404 duration: "" @@ -425,24 +425,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145451Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142501Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:51 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txg0b8bbb98e3674621aa02-0065f1be3b + - txgca2b8adf1bef4a9db6dd-0065f45a3d X-Amz-Request-Id: - - txg0b8bbb98e3674621aa02-0065f1be3b + - txgca2b8adf1bef4a9db6dd-0065f45a3d status: 200 OK code: 200 duration: "" @@ -455,22 +455,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145451Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142501Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg0bfe698a853d4e5990b5-0065f1be3b + body: NoSuchTagSetThe TagSet does not existtxg007dffc6a7884c84be2a-0065f45a3dtxg007dffc6a7884c84be2a-0065f45a3d/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:51 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txg0bfe698a853d4e5990b5-0065f1be3b + - txg007dffc6a7884c84be2a-0065f45a3d X-Amz-Request-Id: - - txg0bfe698a853d4e5990b5-0065f1be3b + - txg007dffc6a7884c84be2a-0065f45a3d status: 404 Not Found code: 404 duration: "" @@ -483,23 +483,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145451Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142501Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txga5346d2f63654b858fd4-0065f1be3b + does not existtxg6c61c5cd9c6243c98659-0065f45a3dtxg6c61c5cd9c6243c98659-0065f45a3d/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:51 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txga5346d2f63654b858fd4-0065f1be3b + - txg6c61c5cd9c6243c98659-0065f45a3d X-Amz-Request-Id: - - txga5346d2f63654b858fd4-0065f1be3b + - txg6c61c5cd9c6243c98659-0065f45a3d status: 404 Not Found code: 404 duration: "" @@ -512,8 +512,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145451Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142501Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -525,11 +525,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:51 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txge51ca0ee955f4f7198fe-0065f1be3b + - txg48b498ae1b684a7fa22a-0065f45a3d X-Amz-Request-Id: - - txge51ca0ee955f4f7198fe-0065f1be3b + - txg48b498ae1b684a7fa22a-0065f45a3d status: 200 OK code: 200 duration: "" @@ -542,8 +542,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145451Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142501Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:52 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txgd869ba55545148c19e5c-0065f1be3c + - txg33d90c06f69742b98b6a-0065f45a3d X-Amz-Request-Id: - - txgd869ba55545148c19e5c-0065f1be3c + - txg33d90c06f69742b98b6a-0065f45a3d status: 200 OK code: 200 duration: "" @@ -601,23 +601,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145452Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142501Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg9fb323d38d4f473bb734-0065f1be3c + Lock configuration does not exist for this buckettxg5b467cba48114e1c9b5f-0065f45a3dtxg5b467cba48114e1c9b5f-0065f45a3d/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:52 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txg9fb323d38d4f473bb734-0065f1be3c + - txg5b467cba48114e1c9b5f-0065f45a3d X-Amz-Request-Id: - - txg9fb323d38d4f473bb734-0065f1be3c + - txg5b467cba48114e1c9b5f-0065f45a3d status: 404 Not Found code: 404 duration: "" @@ -630,24 +630,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145452Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142501Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:52 GMT + - Fri, 15 Mar 2024 14:25:01 GMT X-Amz-Id-2: - - txgb931c2f4d8e54eb7a993-0065f1be3c + - txgf8979deccbc5446b8fd0-0065f45a3d X-Amz-Request-Id: - - txgb931c2f4d8e54eb7a993-0065f1be3c + - txgf8979deccbc5446b8fd0-0065f45a3d status: 200 OK code: 200 duration: "" @@ -660,22 +660,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145452Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142502Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgdb6623f08fe040d39d72-0065f1be3c + body: NoSuchTagSetThe TagSet does not existtxg8f7009c444ac48d1b9fc-0065f45a3etxg8f7009c444ac48d1b9fc-0065f45a3e/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:52 GMT + - Fri, 15 Mar 2024 14:25:02 GMT X-Amz-Id-2: - - txgdb6623f08fe040d39d72-0065f1be3c + - txg8f7009c444ac48d1b9fc-0065f45a3e X-Amz-Request-Id: - - txgdb6623f08fe040d39d72-0065f1be3c + - txg8f7009c444ac48d1b9fc-0065f45a3e status: 404 Not Found code: 404 duration: "" @@ -688,23 +688,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145452Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142502Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgcaf53d43940b42e4b488-0065f1be3c + does not existtxgf684502637ab4f679562-0065f45a3etxgf684502637ab4f679562-0065f45a3e/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:52 GMT + - Fri, 15 Mar 2024 14:25:02 GMT X-Amz-Id-2: - - txgcaf53d43940b42e4b488-0065f1be3c + - txgf684502637ab4f679562-0065f45a3e X-Amz-Request-Id: - - txgcaf53d43940b42e4b488-0065f1be3c + - txgf684502637ab4f679562-0065f45a3e status: 404 Not Found code: 404 duration: "" @@ -717,8 +717,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145452Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142502Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -730,11 +730,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:52 GMT + - Fri, 15 Mar 2024 14:25:02 GMT X-Amz-Id-2: - - txg6701566e683c4fb7a29f-0065f1be3c + - txg979e04cc87864af4aa3b-0065f45a3e X-Amz-Request-Id: - - txg6701566e683c4fb7a29f-0065f1be3c + - txg979e04cc87864af4aa3b-0065f45a3e status: 200 OK code: 200 duration: "" @@ -747,8 +747,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145452Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142502Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled365path1/id1Enabled90ONEZONE_IA + body: id1Enabled90ONEZONE_IA365path1/ form: {} headers: Content-Length: - "306" Content-Md5: - - k04v/3ylJ2D61dgycOjeTg== + - dr3eqEsg1NC8tsACfpTLcw== User-Agent: - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) X-Amz-Content-Sha256: - - de1418e62a2680330e07a11a092b47b671d4ed12fe9fe6d9780b095b8f45d69c + - 968ec68e8f7af2d38aef648263f09323c0f00cb6618347a7e74649634788632f X-Amz-Date: - - 20240313T145452Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142502Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: PUT response: body: "" @@ -789,11 +789,11 @@ interactions: Content-Length: - "0" Date: - - Wed, 13 Mar 2024 14:54:52 GMT + - Fri, 15 Mar 2024 14:25:02 GMT X-Amz-Id-2: - - txg260099d6c6ae433a8702-0065f1be3c + - txgc3fab845f8e74925b082-0065f45a3e X-Amz-Request-Id: - - txg260099d6c6ae433a8702-0065f1be3c + - txgc3fab845f8e74925b082-0065f45a3e status: 200 OK code: 200 duration: "" @@ -806,24 +806,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142502Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:02 GMT X-Amz-Id-2: - - txg65498f2473514a7abe8d-0065f1be3d + - txgcbc17809b75b4630a651-0065f45a3e X-Amz-Request-Id: - - txg65498f2473514a7abe8d-0065f1be3d + - txgcbc17809b75b4630a651-0065f45a3e status: 200 OK code: 200 duration: "" @@ -836,23 +836,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142502Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg5bd35235e87e4e40ac3a-0065f1be3d + Lock configuration does not exist for this buckettxg80aac1546b824d21ba0c-0065f45a3etxg80aac1546b824d21ba0c-0065f45a3e/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:02 GMT X-Amz-Id-2: - - txg5bd35235e87e4e40ac3a-0065f1be3d + - txg80aac1546b824d21ba0c-0065f45a3e X-Amz-Request-Id: - - txg5bd35235e87e4e40ac3a-0065f1be3d + - txg80aac1546b824d21ba0c-0065f45a3e status: 404 Not Found code: 404 duration: "" @@ -865,24 +865,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142503Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:03 GMT X-Amz-Id-2: - - txgca6ad54dc9a640ed8668-0065f1be3d + - txgd73e86009fcd45a6b28a-0065f45a3f X-Amz-Request-Id: - - txgca6ad54dc9a640ed8668-0065f1be3d + - txgd73e86009fcd45a6b28a-0065f45a3f status: 200 OK code: 200 duration: "" @@ -895,22 +895,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142503Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg71c512d64bdd42c4bda6-0065f1be3d + body: NoSuchTagSetThe TagSet does not existtxgeea9ed3eb3e7446583fe-0065f45a3ftxgeea9ed3eb3e7446583fe-0065f45a3f/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:03 GMT X-Amz-Id-2: - - txg71c512d64bdd42c4bda6-0065f1be3d + - txgeea9ed3eb3e7446583fe-0065f45a3f X-Amz-Request-Id: - - txg71c512d64bdd42c4bda6-0065f1be3d + - txgeea9ed3eb3e7446583fe-0065f45a3f status: 404 Not Found code: 404 duration: "" @@ -923,23 +923,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142503Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg1aee3a53578740109080-0065f1be3d + does not existtxge4192ef72fc34b56bca2-0065f45a3ftxge4192ef72fc34b56bca2-0065f45a3f/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:03 GMT X-Amz-Id-2: - - txg1aee3a53578740109080-0065f1be3d + - txge4192ef72fc34b56bca2-0065f45a3f X-Amz-Request-Id: - - txg1aee3a53578740109080-0065f1be3d + - txge4192ef72fc34b56bca2-0065f45a3f status: 404 Not Found code: 404 duration: "" @@ -952,8 +952,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142503Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -965,11 +965,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:03 GMT X-Amz-Id-2: - - txg94de2457f6d44848bcf1-0065f1be3d + - txgf2a43cb628ff4fa59114-0065f45a3f X-Amz-Request-Id: - - txg94de2457f6d44848bcf1-0065f1be3d + - txgf2a43cb628ff4fa59114-0065f45a3f status: 200 OK code: 200 duration: "" @@ -982,8 +982,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142504Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled365path1/id1Enabled - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:04 GMT X-Amz-Id-2: - - txgbbd5679994214b2aa749-0065f1be3d + - txg335a1fd4a3c44f5ca1b0-0065f45a40 X-Amz-Request-Id: - - txgbbd5679994214b2aa749-0065f1be3d + - txg335a1fd4a3c44f5ca1b0-0065f45a40 status: 200 OK code: 200 duration: "" @@ -1098,23 +1098,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142504Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg480b4a2a1dee442c98f0-0065f1be3d + Lock configuration does not exist for this buckettxge03c049f28a64765bae0-0065f45a40txge03c049f28a64765bae0-0065f45a40/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:04 GMT X-Amz-Id-2: - - txg480b4a2a1dee442c98f0-0065f1be3d + - txge03c049f28a64765bae0-0065f45a40 X-Amz-Request-Id: - - txg480b4a2a1dee442c98f0-0065f1be3d + - txge03c049f28a64765bae0-0065f45a40 status: 404 Not Found code: 404 duration: "" @@ -1127,24 +1127,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142504Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:04 GMT X-Amz-Id-2: - - txg33163c0a9f97408eb866-0065f1be3d + - txg9edab2a205d145f0a652-0065f45a40 X-Amz-Request-Id: - - txg33163c0a9f97408eb866-0065f1be3d + - txg9edab2a205d145f0a652-0065f45a40 status: 200 OK code: 200 duration: "" @@ -1157,22 +1157,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145453Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg51ccd4feeafb40409eea-0065f1be3d + body: NoSuchTagSetThe TagSet does not existtxg9558c113bbce4f0784d7-0065f45a41txg9558c113bbce4f0784d7-0065f45a41/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:53 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txg51ccd4feeafb40409eea-0065f1be3d + - txg9558c113bbce4f0784d7-0065f45a41 X-Amz-Request-Id: - - txg51ccd4feeafb40409eea-0065f1be3d + - txg9558c113bbce4f0784d7-0065f45a41 status: 404 Not Found code: 404 duration: "" @@ -1185,23 +1185,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg6b28fc6b90084bafbed9-0065f1be3e + does not existtxgfcf23a22ca9745ada4d9-0065f45a41txgfcf23a22ca9745ada4d9-0065f45a41/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:54 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txg6b28fc6b90084bafbed9-0065f1be3e + - txgfcf23a22ca9745ada4d9-0065f45a41 X-Amz-Request-Id: - - txg6b28fc6b90084bafbed9-0065f1be3e + - txgfcf23a22ca9745ada4d9-0065f45a41 status: 404 Not Found code: 404 duration: "" @@ -1214,8 +1214,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -1227,11 +1227,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:54 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txg3cb7655b0f154c51b30e-0065f1be3e + - txgee4cb828e4a748e5af10-0065f45a41 X-Amz-Request-Id: - - txg3cb7655b0f154c51b30e-0065f1be3e + - txgee4cb828e4a748e5af10-0065f45a41 status: 200 OK code: 200 duration: "" @@ -1244,8 +1244,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:54 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txge32a5b377f284555a148-0065f1be3e + - txgf04eabec184c4abfae89-0065f45a41 X-Amz-Request-Id: - - txge32a5b377f284555a148-0065f1be3e + - txgf04eabec184c4abfae89-0065f45a41 status: 200 OK code: 200 duration: "" @@ -1303,23 +1303,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg84fd1717ecd0409b9d60-0065f1be3e + Lock configuration does not exist for this buckettxgd05563d9311a47bab512-0065f45a41txgd05563d9311a47bab512-0065f45a41/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:54 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txg84fd1717ecd0409b9d60-0065f1be3e + - txgd05563d9311a47bab512-0065f45a41 X-Amz-Request-Id: - - txg84fd1717ecd0409b9d60-0065f1be3e + - txgd05563d9311a47bab512-0065f45a41 status: 404 Not Found code: 404 duration: "" @@ -1332,24 +1332,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:54 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txgb4c785e8789a411c82b2-0065f1be3e + - txg5acd3657d46e4cba842b-0065f45a41 X-Amz-Request-Id: - - txgb4c785e8789a411c82b2-0065f1be3e + - txg5acd3657d46e4cba842b-0065f45a41 status: 200 OK code: 200 duration: "" @@ -1362,22 +1362,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgb31d50db7d1847358123-0065f1be3e + body: NoSuchTagSetThe TagSet does not existtxg56946d232c594d68b5c7-0065f45a41txg56946d232c594d68b5c7-0065f45a41/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:54 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txgb31d50db7d1847358123-0065f1be3e + - txg56946d232c594d68b5c7-0065f45a41 X-Amz-Request-Id: - - txgb31d50db7d1847358123-0065f1be3e + - txg56946d232c594d68b5c7-0065f45a41 status: 404 Not Found code: 404 duration: "" @@ -1390,23 +1390,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgc6045b347a434b4aa385-0065f1be3e + does not existtxg0cdf2e4ffdcb4fd8b328-0065f45a41txg0cdf2e4ffdcb4fd8b328-0065f45a41/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:54 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txgc6045b347a434b4aa385-0065f1be3e + - txg0cdf2e4ffdcb4fd8b328-0065f45a41 X-Amz-Request-Id: - - txgc6045b347a434b4aa385-0065f1be3e + - txg0cdf2e4ffdcb4fd8b328-0065f45a41 status: 404 Not Found code: 404 duration: "" @@ -1419,8 +1419,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -1432,11 +1432,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:54 GMT + - Fri, 15 Mar 2024 14:25:05 GMT X-Amz-Id-2: - - txgb49c1e82ce8a408e9350-0065f1be3e + - txg25da18aafedd41d1ab85-0065f45a41 X-Amz-Request-Id: - - txgb49c1e82ce8a408e9350-0065f1be3e + - txg25da18aafedd41d1ab85-0065f45a41 status: 200 OK code: 200 duration: "" @@ -1449,8 +1449,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145454Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142505Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled365path1/id1EnabledGLACIER12050path2/id2EnabledEnabled1path3/tagKeytagValueterraformhashicorpid3terraformhashicorptagKeytagValueid4Enabled1GLACIERtagKeytagValueid5Enabled1GLACIER + body: 120GLACIER365path1/id1Enabled50path2/id2Enabledid3Enabled1terraformhashicorptagKeytagValuepath3/tagKeytagValuehashicorpterraformid4Enabled1GLACIERid5Enabled1GLACIERtagKeytagValue form: {} headers: Content-Length: - "1128" Content-Md5: - - Fi4K4j8q0y6zO3XsF23+tQ== + - PTu9V1z/AfmmkhB6rFfGig== User-Agent: - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) X-Amz-Content-Sha256: - - 1d951c0ca2c566582c978b7213096b7a873300d16aae47cf7de4e76bde51652b + - a3e18f4f9e72b5bceafdf4a966f081bac00e3e8665b1069fe3c0964df4ffb235 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142506Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: PUT response: body: "" @@ -1491,11 +1491,11 @@ interactions: Content-Length: - "0" Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:06 GMT X-Amz-Id-2: - - txgec0afa310b1449969f56-0065f1be3f + - txg2d80a9396df8471a8a96-0065f45a42 X-Amz-Request-Id: - - txgec0afa310b1449969f56-0065f1be3f + - txg2d80a9396df8471a8a96-0065f45a42 status: 200 OK code: 200 duration: "" @@ -1508,24 +1508,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142506Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:06 GMT X-Amz-Id-2: - - txg70e4d23dfad649fc87fa-0065f1be3f + - txge5b78a32887d4447861c-0065f45a42 X-Amz-Request-Id: - - txg70e4d23dfad649fc87fa-0065f1be3f + - txge5b78a32887d4447861c-0065f45a42 status: 200 OK code: 200 duration: "" @@ -1538,23 +1538,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142506Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgf0f6bfeb7c5a498bbb4c-0065f1be3f + Lock configuration does not exist for this buckettxge9174a06993845d4bc91-0065f45a42txge9174a06993845d4bc91-0065f45a42/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:06 GMT X-Amz-Id-2: - - txgf0f6bfeb7c5a498bbb4c-0065f1be3f + - txge9174a06993845d4bc91-0065f45a42 X-Amz-Request-Id: - - txgf0f6bfeb7c5a498bbb4c-0065f1be3f + - txge9174a06993845d4bc91-0065f45a42 status: 404 Not Found code: 404 duration: "" @@ -1567,24 +1567,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142506Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:06 GMT X-Amz-Id-2: - - txg98205f97839c4396b656-0065f1be3f + - txgd4056fe76a6b40429a7e-0065f45a42 X-Amz-Request-Id: - - txg98205f97839c4396b656-0065f1be3f + - txgd4056fe76a6b40429a7e-0065f45a42 status: 200 OK code: 200 duration: "" @@ -1597,22 +1597,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142506Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgd8c836c887f94119966e-0065f1be3f + body: NoSuchTagSetThe TagSet does not existtxg276b5fcde38345da87b8-0065f45a42txg276b5fcde38345da87b8-0065f45a42/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:06 GMT X-Amz-Id-2: - - txgd8c836c887f94119966e-0065f1be3f + - txg276b5fcde38345da87b8-0065f45a42 X-Amz-Request-Id: - - txgd8c836c887f94119966e-0065f1be3f + - txg276b5fcde38345da87b8-0065f45a42 status: 404 Not Found code: 404 duration: "" @@ -1625,23 +1625,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142506Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgc4338b31fc854145ac81-0065f1be3f + does not existtxgf37e8d606b8c4359b887-0065f45a42txgf37e8d606b8c4359b887-0065f45a42/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:06 GMT X-Amz-Id-2: - - txgc4338b31fc854145ac81-0065f1be3f + - txgf37e8d606b8c4359b887-0065f45a42 X-Amz-Request-Id: - - txgc4338b31fc854145ac81-0065f1be3f + - txgf37e8d606b8c4359b887-0065f45a42 status: 404 Not Found code: 404 duration: "" @@ -1654,8 +1654,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142506Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -1667,11 +1667,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:06 GMT X-Amz-Id-2: - - txg414bca20bf8742f5b21c-0065f1be3f + - txgf463430fe4074a4aa0c9-0065f45a42 X-Amz-Request-Id: - - txg414bca20bf8742f5b21c-0065f1be3f + - txgf463430fe4074a4aa0c9-0065f45a42 status: 200 OK code: 200 duration: "" @@ -1684,12 +1684,12 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled120GLACIER50path2/id2Enabled1path3/tagKeytagValueterraformhashicorpid3EnabledterraformhashicorptagKeytagValueid4Enabled120GLACIER50path2/id2Enabled1path3/terraformhashicorptagKeytagValueid3EnabledtagKeytagValueterraformhashicorpid4Enabled1GLACIERtagKeytagValueid5Enabled1GLACIER headers: @@ -1698,11 +1698,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txgd22cbc447c3b4cc38cac-0065f1be3f + - txg7dfb6366155d4836a96f-0065f45a43 X-Amz-Request-Id: - - txgd22cbc447c3b4cc38cac-0065f1be3f + - txg7dfb6366155d4836a96f-0065f45a43 status: 200 OK code: 200 duration: "" @@ -1715,8 +1715,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -1724,13 +1724,13 @@ interactions: Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg0a2e2a900905459790c6-0065f1be3f + - txga42f44e6138444659ab8-0065f45a43 X-Amz-Request-Id: - - txg0a2e2a900905459790c6-0065f1be3f + - txga42f44e6138444659ab8-0065f45a43 status: 200 OK code: 200 duration: "" @@ -1743,12 +1743,12 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145455Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled120GLACIER50path2/id2Enabled1path3/tagKeytagValueterraformhashicorpid3EnabledterraformhashicorptagKeytagValueid4Enabled120GLACIER50path2/id2Enabled1path3/terraformhashicorptagKeytagValueid3EnabledtagKeytagValueterraformhashicorpid4Enabled1GLACIERtagKeytagValueid5Enabled1GLACIER headers: @@ -1757,11 +1757,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:55 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txga71b9ff956d24274b95e-0065f1be3f + - txg6b9bb9ef6f7d4975852e-0065f45a43 X-Amz-Request-Id: - - txga71b9ff956d24274b95e-0065f1be3f + - txg6b9bb9ef6f7d4975852e-0065f45a43 status: 200 OK code: 200 duration: "" @@ -1774,24 +1774,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txg47132d0f6b154a668c47-0065f1be40 + - txgd2724b1568914788bc9a-0065f45a43 X-Amz-Request-Id: - - txg47132d0f6b154a668c47-0065f1be40 + - txgd2724b1568914788bc9a-0065f45a43 status: 200 OK code: 200 duration: "" @@ -1804,23 +1804,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg04e5485300204b7abe0c-0065f1be40 + Lock configuration does not exist for this buckettxge19b0a51f9134078af2d-0065f45a43txge19b0a51f9134078af2d-0065f45a43/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txg04e5485300204b7abe0c-0065f1be40 + - txge19b0a51f9134078af2d-0065f45a43 X-Amz-Request-Id: - - txg04e5485300204b7abe0c-0065f1be40 + - txge19b0a51f9134078af2d-0065f45a43 status: 404 Not Found code: 404 duration: "" @@ -1833,24 +1833,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txgff88a7431e0543428396-0065f1be40 + - txg92fbf872e272426c96c8-0065f45a43 X-Amz-Request-Id: - - txgff88a7431e0543428396-0065f1be40 + - txg92fbf872e272426c96c8-0065f45a43 status: 200 OK code: 200 duration: "" @@ -1863,22 +1863,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg1739ef298a9441aa91e7-0065f1be40 + body: NoSuchTagSetThe TagSet does not existtxg9e0bd2899bb24334bc6b-0065f45a43txg9e0bd2899bb24334bc6b-0065f45a43/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txg1739ef298a9441aa91e7-0065f1be40 + - txg9e0bd2899bb24334bc6b-0065f45a43 X-Amz-Request-Id: - - txg1739ef298a9441aa91e7-0065f1be40 + - txg9e0bd2899bb24334bc6b-0065f45a43 status: 404 Not Found code: 404 duration: "" @@ -1891,23 +1891,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg34fe7bd3d2dd4381a5ed-0065f1be40 + does not existtxg5dbab72cbcfe471cb898-0065f45a43txg5dbab72cbcfe471cb898-0065f45a43/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txg34fe7bd3d2dd4381a5ed-0065f1be40 + - txg5dbab72cbcfe471cb898-0065f45a43 X-Amz-Request-Id: - - txg34fe7bd3d2dd4381a5ed-0065f1be40 + - txg5dbab72cbcfe471cb898-0065f45a43 status: 404 Not Found code: 404 duration: "" @@ -1920,8 +1920,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -1933,11 +1933,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txg7a07340084cf4f2aa689-0065f1be40 + - txg32d8aff9f2774b1b8d82-0065f45a43 X-Amz-Request-Id: - - txg7a07340084cf4f2aa689-0065f1be40 + - txg32d8aff9f2774b1b8d82-0065f45a43 status: 200 OK code: 200 duration: "" @@ -1950,12 +1950,12 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142507Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled120GLACIER50path2/id2Enabled1path3/tagKeytagValueterraformhashicorpid3EnabledterraformhashicorptagKeytagValueid4Enabled120GLACIER50path2/id2Enabled1path3/terraformhashicorptagKeytagValueid3EnabledtagKeytagValueterraformhashicorpid4Enabled1GLACIERtagKeytagValueid5Enabled1GLACIER headers: @@ -1964,11 +1964,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:07 GMT X-Amz-Id-2: - - txgefd75a0d63fd4e91bd6b-0065f1be40 + - txg449d01fe44be413395cc-0065f45a43 X-Amz-Request-Id: - - txgefd75a0d63fd4e91bd6b-0065f1be40 + - txg449d01fe44be413395cc-0065f45a43 status: 200 OK code: 200 duration: "" @@ -1981,24 +1981,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142508Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:08 GMT X-Amz-Id-2: - - txg7628a0a03cdd432fb777-0065f1be40 + - txg16d44443d1474e6399b1-0065f45a44 X-Amz-Request-Id: - - txg7628a0a03cdd432fb777-0065f1be40 + - txg16d44443d1474e6399b1-0065f45a44 status: 200 OK code: 200 duration: "" @@ -2011,23 +2011,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142508Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg8320c0608380478bbe1a-0065f1be40 + Lock configuration does not exist for this buckettxg56586d6fe8cc405ea6a2-0065f45a44txg56586d6fe8cc405ea6a2-0065f45a44/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:08 GMT X-Amz-Id-2: - - txg8320c0608380478bbe1a-0065f1be40 + - txg56586d6fe8cc405ea6a2-0065f45a44 X-Amz-Request-Id: - - txg8320c0608380478bbe1a-0065f1be40 + - txg56586d6fe8cc405ea6a2-0065f45a44 status: 404 Not Found code: 404 duration: "" @@ -2040,24 +2040,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142508Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:08 GMT X-Amz-Id-2: - - txg1d48fcf58f384d31b3e0-0065f1be40 + - txgd8205b252087464d92e6-0065f45a44 X-Amz-Request-Id: - - txg1d48fcf58f384d31b3e0-0065f1be40 + - txgd8205b252087464d92e6-0065f45a44 status: 200 OK code: 200 duration: "" @@ -2070,22 +2070,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145456Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142508Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg58d6660c2f934a12bd5a-0065f1be40 + body: NoSuchTagSetThe TagSet does not existtxgb272cbe451f24285b606-0065f45a44txgb272cbe451f24285b606-0065f45a44/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:56 GMT + - Fri, 15 Mar 2024 14:25:08 GMT X-Amz-Id-2: - - txg58d6660c2f934a12bd5a-0065f1be40 + - txgb272cbe451f24285b606-0065f45a44 X-Amz-Request-Id: - - txg58d6660c2f934a12bd5a-0065f1be40 + - txgb272cbe451f24285b606-0065f45a44 status: 404 Not Found code: 404 duration: "" @@ -2098,23 +2098,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142508Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgd2199240e77449368ecc-0065f1be41 + does not existtxg875328391dd64304b32e-0065f45a44txg875328391dd64304b32e-0065f45a44/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:08 GMT X-Amz-Id-2: - - txgd2199240e77449368ecc-0065f1be41 + - txg875328391dd64304b32e-0065f45a44 X-Amz-Request-Id: - - txgd2199240e77449368ecc-0065f1be41 + - txg875328391dd64304b32e-0065f45a44 status: 404 Not Found code: 404 duration: "" @@ -2127,8 +2127,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142508Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -2140,11 +2140,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:08 GMT X-Amz-Id-2: - - txg2ff5f578254a4c7293b9-0065f1be41 + - txgf2ffc75674fc46939982-0065f45a44 X-Amz-Request-Id: - - txg2ff5f578254a4c7293b9-0065f1be41 + - txgf2ffc75674fc46939982-0065f45a44 status: 200 OK code: 200 duration: "" @@ -2157,12 +2157,12 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 365path1/id1Enabled120GLACIER50path2/id2Enabled1path3/tagKeytagValueterraformhashicorpid3EnabledterraformhashicorptagKeytagValueid4Enabled120GLACIER50path2/id2Enabled1path3/terraformhashicorptagKeytagValueid3EnabledtagKeytagValueterraformhashicorpid4Enabled1GLACIERtagKeytagValueid5Enabled1GLACIER headers: @@ -2171,29 +2171,29 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txgb3b9cfb127bb49bd8fed-0065f1be41 + - txgd3570dc0c3454c63993f-0065f45a45 X-Amz-Request-Id: - - txgb3b9cfb127bb49bd8fed-0065f1be41 + - txgd3570dc0c3454c63993f-0065f45a45 status: 200 OK code: 200 duration: "" - request: - body: 30path1/id1Enabled + body: id1Enabled30path1/ form: {} headers: Content-Length: - "296" Content-Md5: - - DRiUl1CBZq31Ms3o2gUYXA== + - Js4eDs1v9bLOVH+pbldQZQ== User-Agent: - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) X-Amz-Content-Sha256: - - 7756d51b786b61edff20b7957d22346417f85f71d19eeca0d6d28d6df7b15bbc + - b8e84be3a3e146b18f46491b74dc459c470811ebae9e309a941b226a05418557 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: PUT response: body: "" @@ -2201,11 +2201,11 @@ interactions: Content-Length: - "0" Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txg9f7b67346f034c90acd2-0065f1be41 + - txgfb80130e95e24a169549-0065f45a45 X-Amz-Request-Id: - - txg9f7b67346f034c90acd2-0065f1be41 + - txgfb80130e95e24a169549-0065f45a45 status: 200 OK code: 200 duration: "" @@ -2218,24 +2218,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txga57220afc0b847e4bf62-0065f1be41 + - txg8d8292eb6781458f9202-0065f45a45 X-Amz-Request-Id: - - txga57220afc0b847e4bf62-0065f1be41 + - txg8d8292eb6781458f9202-0065f45a45 status: 200 OK code: 200 duration: "" @@ -2248,23 +2248,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txge252bbf8d4d14e00b7fc-0065f1be41 + Lock configuration does not exist for this buckettxg596ddad7481f49c7a3ca-0065f45a45txg596ddad7481f49c7a3ca-0065f45a45/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txge252bbf8d4d14e00b7fc-0065f1be41 + - txg596ddad7481f49c7a3ca-0065f45a45 X-Amz-Request-Id: - - txge252bbf8d4d14e00b7fc-0065f1be41 + - txg596ddad7481f49c7a3ca-0065f45a45 status: 404 Not Found code: 404 duration: "" @@ -2277,24 +2277,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txgce87aabea5e046af89df-0065f1be41 + - txg19ea9eea4fac4774b5e4-0065f45a45 X-Amz-Request-Id: - - txgce87aabea5e046af89df-0065f1be41 + - txg19ea9eea4fac4774b5e4-0065f45a45 status: 200 OK code: 200 duration: "" @@ -2307,22 +2307,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg3b5880db9a8e49c784c0-0065f1be41 + body: NoSuchTagSetThe TagSet does not existtxgef2b9600ded3443b8658-0065f45a45txgef2b9600ded3443b8658-0065f45a45/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txg3b5880db9a8e49c784c0-0065f1be41 + - txgef2b9600ded3443b8658-0065f45a45 X-Amz-Request-Id: - - txg3b5880db9a8e49c784c0-0065f1be41 + - txgef2b9600ded3443b8658-0065f45a45 status: 404 Not Found code: 404 duration: "" @@ -2335,23 +2335,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg35ef65c145f4412cbbc1-0065f1be41 + does not existtxg85ce015352854ec6806f-0065f45a45txg85ce015352854ec6806f-0065f45a45/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txg35ef65c145f4412cbbc1-0065f1be41 + - txg85ce015352854ec6806f-0065f45a45 X-Amz-Request-Id: - - txg35ef65c145f4412cbbc1-0065f1be41 + - txg85ce015352854ec6806f-0065f45a45 status: 404 Not Found code: 404 duration: "" @@ -2364,8 +2364,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -2377,11 +2377,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txg791858da8e764275a272-0065f1be41 + - txgdfb8127b056b449584a1-0065f45a45 X-Amz-Request-Id: - - txg791858da8e764275a272-0065f1be41 + - txgdfb8127b056b449584a1-0065f45a45 status: 200 OK code: 200 duration: "" @@ -2394,8 +2394,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145457Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 30path1/id1Enabled @@ -2405,11 +2405,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:57 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txg5585be64d0b5495eb2a6-0065f1be41 + - txgbfccc77f18d5428ababa-0065f45a45 X-Amz-Request-Id: - - txg5585be64d0b5495eb2a6-0065f1be41 + - txgbfccc77f18d5428ababa-0065f45a45 status: 200 OK code: 200 duration: "" @@ -2422,8 +2422,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -2431,13 +2431,13 @@ interactions: Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg3a1303dfee5249959cc8-0065f1be42 + - txga029b646d0304fd7b0a2-0065f45a45 X-Amz-Request-Id: - - txg3a1303dfee5249959cc8-0065f1be42 + - txga029b646d0304fd7b0a2-0065f45a45 status: 200 OK code: 200 duration: "" @@ -2450,8 +2450,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142509Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 30path1/id1Enabled @@ -2461,11 +2461,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:09 GMT X-Amz-Id-2: - - txgb0132b56821746f29ad9-0065f1be42 + - txgf68ce635f37c4a87897d-0065f45a45 X-Amz-Request-Id: - - txgb0132b56821746f29ad9-0065f1be42 + - txgf68ce635f37c4a87897d-0065f45a45 status: 200 OK code: 200 duration: "" @@ -2478,24 +2478,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142510Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:10 GMT X-Amz-Id-2: - - txg5add9688151f4a5d82b8-0065f1be42 + - txg0bf97efc0c1a43b589f0-0065f45a46 X-Amz-Request-Id: - - txg5add9688151f4a5d82b8-0065f1be42 + - txg0bf97efc0c1a43b589f0-0065f45a46 status: 200 OK code: 200 duration: "" @@ -2508,23 +2508,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142510Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg90a50d3a1f974449874e-0065f1be42 + Lock configuration does not exist for this buckettxg4a58db3281d84b85b41a-0065f45a46txg4a58db3281d84b85b41a-0065f45a46/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:10 GMT X-Amz-Id-2: - - txg90a50d3a1f974449874e-0065f1be42 + - txg4a58db3281d84b85b41a-0065f45a46 X-Amz-Request-Id: - - txg90a50d3a1f974449874e-0065f1be42 + - txg4a58db3281d84b85b41a-0065f45a46 status: 404 Not Found code: 404 duration: "" @@ -2537,24 +2537,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142510Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:10 GMT X-Amz-Id-2: - - txg76266217acd7430c9e5d-0065f1be42 + - txgf13484ad27a84964b9db-0065f45a46 X-Amz-Request-Id: - - txg76266217acd7430c9e5d-0065f1be42 + - txgf13484ad27a84964b9db-0065f45a46 status: 200 OK code: 200 duration: "" @@ -2567,22 +2567,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142510Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg06b6c88f927a4abb9aa6-0065f1be42 + body: NoSuchTagSetThe TagSet does not existtxg49684cc3bc914cbd9762-0065f45a46txg49684cc3bc914cbd9762-0065f45a46/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:10 GMT X-Amz-Id-2: - - txg06b6c88f927a4abb9aa6-0065f1be42 + - txg49684cc3bc914cbd9762-0065f45a46 X-Amz-Request-Id: - - txg06b6c88f927a4abb9aa6-0065f1be42 + - txg49684cc3bc914cbd9762-0065f45a46 status: 404 Not Found code: 404 duration: "" @@ -2595,23 +2595,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142510Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgdba7a0fb823042929890-0065f1be42 + does not existtxg9259ce4cad5b4b779d2b-0065f45a46txg9259ce4cad5b4b779d2b-0065f45a46/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:10 GMT X-Amz-Id-2: - - txgdba7a0fb823042929890-0065f1be42 + - txg9259ce4cad5b4b779d2b-0065f45a46 X-Amz-Request-Id: - - txgdba7a0fb823042929890-0065f1be42 + - txg9259ce4cad5b4b779d2b-0065f45a46 status: 404 Not Found code: 404 duration: "" @@ -2624,8 +2624,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142510Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -2637,11 +2637,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:10 GMT X-Amz-Id-2: - - txg74ca41ee58164b02aba4-0065f1be42 + - txge17d55bd47c244388ef1-0065f45a46 X-Amz-Request-Id: - - txg74ca41ee58164b02aba4-0065f1be42 + - txge17d55bd47c244388ef1-0065f45a46 status: 200 OK code: 200 duration: "" @@ -2654,8 +2654,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142511Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 30path1/id1Enabled @@ -2665,11 +2665,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:11 GMT X-Amz-Id-2: - - txga3211f3c4cbc401ab657-0065f1be42 + - txg57cb6d02d474475ab715-0065f45a47 X-Amz-Request-Id: - - txga3211f3c4cbc401ab657-0065f1be42 + - txg57cb6d02d474475ab715-0065f45a47 status: 200 OK code: 200 duration: "" @@ -2682,24 +2682,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142511Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:11 GMT X-Amz-Id-2: - - txg4025ead9d63447c58e75-0065f1be42 + - txg0e9dae3c68f142a48eb3-0065f45a47 X-Amz-Request-Id: - - txg4025ead9d63447c58e75-0065f1be42 + - txg0e9dae3c68f142a48eb3-0065f45a47 status: 200 OK code: 200 duration: "" @@ -2712,23 +2712,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145458Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142511Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg2530fefb60594617bf61-0065f1be42 + Lock configuration does not exist for this buckettxgef0dcf960ee34895820b-0065f45a47txgef0dcf960ee34895820b-0065f45a47/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:58 GMT + - Fri, 15 Mar 2024 14:25:11 GMT X-Amz-Id-2: - - txg2530fefb60594617bf61-0065f1be42 + - txgef0dcf960ee34895820b-0065f45a47 X-Amz-Request-Id: - - txg2530fefb60594617bf61-0065f1be42 + - txgef0dcf960ee34895820b-0065f45a47 status: 404 Not Found code: 404 duration: "" @@ -2741,24 +2741,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142511Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:11 GMT X-Amz-Id-2: - - txgddd05b1c25ff427cad8d-0065f1be43 + - txgbf57aacef1094ad2aff8-0065f45a47 X-Amz-Request-Id: - - txgddd05b1c25ff427cad8d-0065f1be43 + - txgbf57aacef1094ad2aff8-0065f45a47 status: 200 OK code: 200 duration: "" @@ -2771,22 +2771,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142511Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg49dae34cca0542c895a5-0065f1be43 + body: NoSuchTagSetThe TagSet does not existtxg302fb1908b6244b287db-0065f45a47txg302fb1908b6244b287db-0065f45a47/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:11 GMT X-Amz-Id-2: - - txg49dae34cca0542c895a5-0065f1be43 + - txg302fb1908b6244b287db-0065f45a47 X-Amz-Request-Id: - - txg49dae34cca0542c895a5-0065f1be43 + - txg302fb1908b6244b287db-0065f45a47 status: 404 Not Found code: 404 duration: "" @@ -2799,23 +2799,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142511Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg6bf92c2b63aa41ed8e9e-0065f1be43 + does not existtxgdb356ecd98fd4731a0fb-0065f45a47txgdb356ecd98fd4731a0fb-0065f45a47/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:11 GMT X-Amz-Id-2: - - txg6bf92c2b63aa41ed8e9e-0065f1be43 + - txgdb356ecd98fd4731a0fb-0065f45a47 X-Amz-Request-Id: - - txg6bf92c2b63aa41ed8e9e-0065f1be43 + - txgdb356ecd98fd4731a0fb-0065f45a47 status: 404 Not Found code: 404 duration: "" @@ -2828,8 +2828,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142511Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -2841,11 +2841,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:11 GMT X-Amz-Id-2: - - txg090c6e8ee2fc4e60bb97-0065f1be43 + - txg8213066058624197b64c-0065f45a47 X-Amz-Request-Id: - - txg090c6e8ee2fc4e60bb97-0065f1be43 + - txg8213066058624197b64c-0065f45a47 status: 200 OK code: 200 duration: "" @@ -2858,8 +2858,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142511Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 30path1/id1Enabled @@ -2869,11 +2869,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:11 GMT X-Amz-Id-2: - - txg467cef1f1c7b4a77a99e-0065f1be43 + - txg2c293d8cbfb84744a6da-0065f45a47 X-Amz-Request-Id: - - txg467cef1f1c7b4a77a99e-0065f1be43 + - txg2c293d8cbfb84744a6da-0065f45a47 status: 200 OK code: 200 duration: "" @@ -2886,8 +2886,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142512Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -2895,13 +2895,13 @@ interactions: Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:12 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg120e66d0cbb946a4b748-0065f1be43 + - txg1eb1459abb2d4f6f8731-0065f45a48 X-Amz-Request-Id: - - txg120e66d0cbb946a4b748-0065f1be43 + - txg1eb1459abb2d4f6f8731-0065f45a48 status: 200 OK code: 200 duration: "" @@ -2914,8 +2914,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142512Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 30path1/id1Enabled @@ -2925,11 +2925,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:12 GMT X-Amz-Id-2: - - txgeb69f9a9d7a644bba326-0065f1be43 + - txgd4e04a01525b4c82b32d-0065f45a48 X-Amz-Request-Id: - - txgeb69f9a9d7a644bba326-0065f1be43 + - txgd4e04a01525b4c82b32d-0065f45a48 status: 200 OK code: 200 duration: "" @@ -2942,24 +2942,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142512Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:12 GMT X-Amz-Id-2: - - txg7ccb16a4bebc4519af6a-0065f1be43 + - txg4dc875787687442881e7-0065f45a48 X-Amz-Request-Id: - - txg7ccb16a4bebc4519af6a-0065f1be43 + - txg4dc875787687442881e7-0065f45a48 status: 200 OK code: 200 duration: "" @@ -2972,23 +2972,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142512Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg91a2517a749b47849ba3-0065f1be43 + Lock configuration does not exist for this buckettxg13d6893e7ba641f79220-0065f45a48txg13d6893e7ba641f79220-0065f45a48/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:12 GMT X-Amz-Id-2: - - txg91a2517a749b47849ba3-0065f1be43 + - txg13d6893e7ba641f79220-0065f45a48 X-Amz-Request-Id: - - txg91a2517a749b47849ba3-0065f1be43 + - txg13d6893e7ba641f79220-0065f45a48 status: 404 Not Found code: 404 duration: "" @@ -3001,24 +3001,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145459Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142512Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:54:59 GMT + - Fri, 15 Mar 2024 14:25:12 GMT X-Amz-Id-2: - - txg91dd6312a52a4ecf9fed-0065f1be43 + - txg86009879d750474289f9-0065f45a48 X-Amz-Request-Id: - - txg91dd6312a52a4ecf9fed-0065f1be43 + - txg86009879d750474289f9-0065f45a48 status: 200 OK code: 200 duration: "" @@ -3031,22 +3031,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142512Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg23a577e10142410b9cc1-0065f1be44 + body: NoSuchTagSetThe TagSet does not existtxgf82afb4f607e44408141-0065f45a48txgf82afb4f607e44408141-0065f45a48/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:12 GMT X-Amz-Id-2: - - txg23a577e10142410b9cc1-0065f1be44 + - txgf82afb4f607e44408141-0065f45a48 X-Amz-Request-Id: - - txg23a577e10142410b9cc1-0065f1be44 + - txgf82afb4f607e44408141-0065f45a48 status: 404 Not Found code: 404 duration: "" @@ -3059,23 +3059,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142512Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txgbd28121e13de431f8eee-0065f1be44 + does not existtxg1333f1d58a874dd293b3-0065f45a48txg1333f1d58a874dd293b3-0065f45a48/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:12 GMT X-Amz-Id-2: - - txgbd28121e13de431f8eee-0065f1be44 + - txg1333f1d58a874dd293b3-0065f45a48 X-Amz-Request-Id: - - txgbd28121e13de431f8eee-0065f1be44 + - txg1333f1d58a874dd293b3-0065f45a48 status: 404 Not Found code: 404 duration: "" @@ -3088,8 +3088,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142512Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -3101,11 +3101,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:12 GMT X-Amz-Id-2: - - txgd93b6632d92f4a898c63-0065f1be44 + - txg89a8737ef2014ef39a8a-0065f45a48 X-Amz-Request-Id: - - txgd93b6632d92f4a898c63-0065f1be44 + - txg89a8737ef2014ef39a8a-0065f45a48 status: 200 OK code: 200 duration: "" @@ -3118,8 +3118,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142513Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 30path1/id1Enabled @@ -3129,11 +3129,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:13 GMT X-Amz-Id-2: - - txg8735f1449c9d493391f8-0065f1be44 + - txg8ccdcc7f91574c19be4f-0065f45a49 X-Amz-Request-Id: - - txg8735f1449c9d493391f8-0065f1be44 + - txg8ccdcc7f91574c19be4f-0065f45a49 status: 200 OK code: 200 duration: "" @@ -3146,24 +3146,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142513Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:13 GMT X-Amz-Id-2: - - txg17b9cfd23e0b420a93aa-0065f1be44 + - txg48392f0c05da41a7ab2e-0065f45a49 X-Amz-Request-Id: - - txg17b9cfd23e0b420a93aa-0065f1be44 + - txg48392f0c05da41a7ab2e-0065f45a49 status: 200 OK code: 200 duration: "" @@ -3176,23 +3176,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142513Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txge0ffabeeca794f9c9731-0065f1be44 + Lock configuration does not exist for this buckettxgce7e1206348a4023af1e-0065f45a49txgce7e1206348a4023af1e-0065f45a49/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:13 GMT X-Amz-Id-2: - - txge0ffabeeca794f9c9731-0065f1be44 + - txgce7e1206348a4023af1e-0065f45a49 X-Amz-Request-Id: - - txge0ffabeeca794f9c9731-0065f1be44 + - txgce7e1206348a4023af1e-0065f45a49 status: 404 Not Found code: 404 duration: "" @@ -3205,24 +3205,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142513Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:13 GMT X-Amz-Id-2: - - txgcb7791d29c414df48ce6-0065f1be44 + - txgcd54d84eaf32469e9bce-0065f45a49 X-Amz-Request-Id: - - txgcb7791d29c414df48ce6-0065f1be44 + - txgcd54d84eaf32469e9bce-0065f45a49 status: 200 OK code: 200 duration: "" @@ -3235,22 +3235,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142513Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg4a777c898e254830b856-0065f1be44 + body: NoSuchTagSetThe TagSet does not existtxgc024932ef9c14a01a7da-0065f45a49txgc024932ef9c14a01a7da-0065f45a49/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:13 GMT X-Amz-Id-2: - - txg4a777c898e254830b856-0065f1be44 + - txgc024932ef9c14a01a7da-0065f45a49 X-Amz-Request-Id: - - txg4a777c898e254830b856-0065f1be44 + - txgc024932ef9c14a01a7da-0065f45a49 status: 404 Not Found code: 404 duration: "" @@ -3263,23 +3263,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142513Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg73207fb7af284c058ed8-0065f1be44 + does not existtxg3b9a42f1171b48f49b15-0065f45a49txg3b9a42f1171b48f49b15-0065f45a49/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:13 GMT X-Amz-Id-2: - - txg73207fb7af284c058ed8-0065f1be44 + - txg3b9a42f1171b48f49b15-0065f45a49 X-Amz-Request-Id: - - txg73207fb7af284c058ed8-0065f1be44 + - txg3b9a42f1171b48f49b15-0065f45a49 status: 404 Not Found code: 404 duration: "" @@ -3292,8 +3292,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145500Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142513Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -3305,11 +3305,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:00 GMT + - Fri, 15 Mar 2024 14:25:13 GMT X-Amz-Id-2: - - txg392f6deb81694b2dbde4-0065f1be44 + - txg4c3868ea8ce843849628-0065f45a49 X-Amz-Request-Id: - - txg392f6deb81694b2dbde4-0065f1be44 + - txg4c3868ea8ce843849628-0065f45a49 status: 200 OK code: 200 duration: "" @@ -3322,8 +3322,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142513Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 30path1/id1Enabled @@ -3333,29 +3333,29 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:13 GMT X-Amz-Id-2: - - txg38a744ad29634736a72a-0065f1be45 + - txgf1c7358cd7b8441da7b0-0065f45a49 X-Amz-Request-Id: - - txg38a744ad29634736a72a-0065f1be45 + - txgf1c7358cd7b8441da7b0-0065f45a49 status: 200 OK code: 200 duration: "" - request: - body: path1/deletedtrueid1Enabled1 + body: 1path1/deletedtrueid1Enabled form: {} headers: Content-Length: - "284" Content-Md5: - - UpY2sSH/dfKryWGabI/yVw== + - zqc0J7BHqrI4Fowl52m/xA== User-Agent: - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) X-Amz-Content-Sha256: - - 82029a987b072c7f8f9ad8eec49007cc2b8dd1f635c671d80ce0d61db605273a + - c66696878cc52fbe5f1b5468d871024fe4d94447494e4b1797bc44a183ccc313 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142514Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: PUT response: body: "" @@ -3363,11 +3363,11 @@ interactions: Content-Length: - "0" Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:14 GMT X-Amz-Id-2: - - txgb9ea76ab41ab47ae82cb-0065f1be45 + - txg37909300a5d843bbb7ff-0065f45a4a X-Amz-Request-Id: - - txgb9ea76ab41ab47ae82cb-0065f1be45 + - txg37909300a5d843bbb7ff-0065f45a4a status: 200 OK code: 200 duration: "" @@ -3380,24 +3380,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142514Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:14 GMT X-Amz-Id-2: - - txgcd8e5ba8027f4caeb0db-0065f1be45 + - txg65a1df9daf234881b1d6-0065f45a4a X-Amz-Request-Id: - - txgcd8e5ba8027f4caeb0db-0065f1be45 + - txg65a1df9daf234881b1d6-0065f45a4a status: 200 OK code: 200 duration: "" @@ -3410,23 +3410,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142514Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg8aa6db842e43458797c3-0065f1be45 + Lock configuration does not exist for this buckettxg248ac7e4fcca4d65ae72-0065f45a4atxg248ac7e4fcca4d65ae72-0065f45a4a/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:14 GMT X-Amz-Id-2: - - txg8aa6db842e43458797c3-0065f1be45 + - txg248ac7e4fcca4d65ae72-0065f45a4a X-Amz-Request-Id: - - txg8aa6db842e43458797c3-0065f1be45 + - txg248ac7e4fcca4d65ae72-0065f45a4a status: 404 Not Found code: 404 duration: "" @@ -3439,24 +3439,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142514Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:14 GMT X-Amz-Id-2: - - txgdd8e3d51083b45d0b9a3-0065f1be45 + - txg01f5c075be5e47c2a04d-0065f45a4a X-Amz-Request-Id: - - txgdd8e3d51083b45d0b9a3-0065f1be45 + - txg01f5c075be5e47c2a04d-0065f45a4a status: 200 OK code: 200 duration: "" @@ -3469,22 +3469,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142514Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg8c734ac7c2ec43b5bb7a-0065f1be45 + body: NoSuchTagSetThe TagSet does not existtxg87b658f4b16d48c395dc-0065f45a4atxg87b658f4b16d48c395dc-0065f45a4a/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:14 GMT X-Amz-Id-2: - - txg8c734ac7c2ec43b5bb7a-0065f1be45 + - txg87b658f4b16d48c395dc-0065f45a4a X-Amz-Request-Id: - - txg8c734ac7c2ec43b5bb7a-0065f1be45 + - txg87b658f4b16d48c395dc-0065f45a4a status: 404 Not Found code: 404 duration: "" @@ -3497,23 +3497,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142514Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txge9b554e08b244698af36-0065f1be45 + does not existtxgdc78fc83af3c466eb159-0065f45a4atxgdc78fc83af3c466eb159-0065f45a4a/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:14 GMT X-Amz-Id-2: - - txge9b554e08b244698af36-0065f1be45 + - txgdc78fc83af3c466eb159-0065f45a4a X-Amz-Request-Id: - - txge9b554e08b244698af36-0065f1be45 + - txgdc78fc83af3c466eb159-0065f45a4a status: 404 Not Found code: 404 duration: "" @@ -3526,8 +3526,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142514Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -3539,11 +3539,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:14 GMT X-Amz-Id-2: - - txg1318bac0ae0d4bd7a341-0065f1be45 + - txgf97bae97b6914bd9a2c8-0065f45a4a X-Amz-Request-Id: - - txg1318bac0ae0d4bd7a341-0065f1be45 + - txgf97bae97b6914bd9a2c8-0065f45a4a status: 200 OK code: 200 duration: "" @@ -3556,8 +3556,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142514Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 1path1/deletedtrueid1Enabled @@ -3567,11 +3567,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:14 GMT X-Amz-Id-2: - - txg849157ae9ae34430a949-0065f1be45 + - txgb9b4597c47bf429faad7-0065f45a4a X-Amz-Request-Id: - - txg849157ae9ae34430a949-0065f1be45 + - txgb9b4597c47bf429faad7-0065f45a4a status: 200 OK code: 200 duration: "" @@ -3584,8 +3584,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142515Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -3593,13 +3593,217 @@ interactions: Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:15 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txgb86133573b19470cb4cb-0065f1be45 + - txg7bbed5cf34724057b0cc-0065f45a4b + X-Amz-Request-Id: + - txg7bbed5cf34724057b0cc-0065f45a4b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142515Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= + method: GET + response: + body: 1path1/deletedtrueid1Enabled + headers: + Content-Length: + - "284" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:15 GMT + X-Amz-Id-2: + - txgbe1f114c0f5b4ff48f1b-0065f45a4b + X-Amz-Request-Id: + - txgbe1f114c0f5b4ff48f1b-0065f45a4b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142515Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= + method: GET + response: + body: |- + + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:15 GMT + X-Amz-Id-2: + - txg185e900875da40cfbf23-0065f45a4b + X-Amz-Request-Id: + - txg185e900875da40cfbf23-0065f45a4b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142515Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= + method: GET + response: + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this buckettxg4637aa828d134a3889b2-0065f45a4btxg4637aa828d134a3889b2-0065f45a4b/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 + headers: + Content-Length: + - "330" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:15 GMT + X-Amz-Id-2: + - txg4637aa828d134a3889b2-0065f45a4b + X-Amz-Request-Id: + - txg4637aa828d134a3889b2-0065f45a4b + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142515Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ + method: GET + response: + body: |- + + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false + headers: + Content-Length: + - "287" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:15 GMT + X-Amz-Id-2: + - txg444a58e99cf24ad3b225-0065f45a4b + X-Amz-Request-Id: + - txg444a58e99cf24ad3b225-0065f45a4b + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142516Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= + method: GET + response: + body: NoSuchTagSetThe TagSet does not existtxg342e7e2f9d9f4797aefa-0065f45a4ctxg342e7e2f9d9f4797aefa-0065f45a4c/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 + headers: + Content-Length: + - "361" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:16 GMT + X-Amz-Id-2: + - txg342e7e2f9d9f4797aefa-0065f45a4c + X-Amz-Request-Id: + - txg342e7e2f9d9f4797aefa-0065f45a4c + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142516Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= + method: GET + response: + body: NoSuchCORSConfigurationThe CORS configuration + does not existtxg204f88b30b9340c09a8f-0065f45a4ctxg204f88b30b9340c09a8f-0065f45a4c/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 + headers: + Content-Length: + - "298" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:16 GMT + X-Amz-Id-2: + - txg204f88b30b9340c09a8f-0065f45a4c + X-Amz-Request-Id: + - txg204f88b30b9340c09a8f-0065f45a4c + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142516Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= + method: GET + response: + body: |- + + + headers: + Content-Length: + - "138" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:16 GMT + X-Amz-Id-2: + - txgd2fff462dcea4e60b5fb-0065f45a4c X-Amz-Request-Id: - - txgb86133573b19470cb4cb-0065f1be45 + - txgd2fff462dcea4e60b5fb-0065f45a4c status: 200 OK code: 200 duration: "" @@ -3612,8 +3816,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145501Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142516Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 1path1/deletedtrueid1Enabled @@ -3623,11 +3827,11 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:01 GMT + - Fri, 15 Mar 2024 14:25:16 GMT X-Amz-Id-2: - - txg039eff17ba124133b5cd-0065f1be45 + - txgdfd28d7001a7461299ef-0065f45a4c X-Amz-Request-Id: - - txg039eff17ba124133b5cd-0065f1be45 + - txgdfd28d7001a7461299ef-0065f45a4c status: 200 OK code: 200 duration: "" @@ -3640,24 +3844,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145502Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?acl= + - 20240315T142516Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:02 GMT + - Fri, 15 Mar 2024 14:25:16 GMT X-Amz-Id-2: - - txga240e0ec9eb64c8f99ed-0065f1be46 + - txg509106c4c5d844fd9475-0065f45a4c X-Amz-Request-Id: - - txga240e0ec9eb64c8f99ed-0065f1be46 + - txg509106c4c5d844fd9475-0065f45a4c status: 200 OK code: 200 duration: "" @@ -3670,23 +3874,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145502Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?object-lock= + - 20240315T142517Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg9baeb676f96646d39a0d-0065f1be46 + Lock configuration does not exist for this buckettxge8debd8dcc264e89ae94-0065f45a4dtxge8debd8dcc264e89ae94-0065f45a4d/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "279" + - "330" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:02 GMT + - Fri, 15 Mar 2024 14:25:17 GMT X-Amz-Id-2: - - txg9baeb676f96646d39a0d-0065f1be46 + - txge8debd8dcc264e89ae94-0065f45a4d X-Amz-Request-Id: - - txg9baeb676f96646d39a0d-0065f1be46 + - txge8debd8dcc264e89ae94-0065f45a4d status: 404 Not Found code: 404 duration: "" @@ -3699,24 +3903,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145502Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142517Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-bucket-lifecycle-61353163000842828761000false + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false headers: Content-Length: - "287" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:02 GMT + - Fri, 15 Mar 2024 14:25:17 GMT X-Amz-Id-2: - - txg240ac9b91a514cdeae5d-0065f1be46 + - txgc42949e4a66d444d8b51-0065f45a4d X-Amz-Request-Id: - - txg240ac9b91a514cdeae5d-0065f1be46 + - txgc42949e4a66d444d8b51-0065f45a4d status: 200 OK code: 200 duration: "" @@ -3729,22 +3933,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145502Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?tagging= + - 20240315T142517Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg42660125d9cd4e399715-0065f1be46 + body: NoSuchTagSetThe TagSet does not existtxg7300b0f89dfe4952b1b6-0065f45a4dtxg7300b0f89dfe4952b1b6-0065f45a4d/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "224" + - "361" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:02 GMT + - Fri, 15 Mar 2024 14:25:17 GMT X-Amz-Id-2: - - txg42660125d9cd4e399715-0065f1be46 + - txg7300b0f89dfe4952b1b6-0065f45a4d X-Amz-Request-Id: - - txg42660125d9cd4e399715-0065f1be46 + - txg7300b0f89dfe4952b1b6-0065f45a4d status: 404 Not Found code: 404 duration: "" @@ -3757,23 +3961,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145502Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?cors= + - 20240315T142517Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-bucket-lifecycle-6135316300084282876txg756a5b1788164911ba0f-0065f1be46 + does not existtxg232776f021044ac39b06-0065f45a4dtxg232776f021044ac39b06-0065f45a4d/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 headers: Content-Length: - - "247" + - "298" Content-Type: - application/xml Date: - - Wed, 13 Mar 2024 14:55:02 GMT + - Fri, 15 Mar 2024 14:25:17 GMT X-Amz-Id-2: - - txg756a5b1788164911ba0f-0065f1be46 + - txg232776f021044ac39b06-0065f45a4d X-Amz-Request-Id: - - txg756a5b1788164911ba0f-0065f1be46 + - txg232776f021044ac39b06-0065f45a4d status: 404 Not Found code: 404 duration: "" @@ -3786,8 +3990,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145502Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?versioning= + - 20240315T142517Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -3799,11 +4003,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:02 GMT + - Fri, 15 Mar 2024 14:25:17 GMT X-Amz-Id-2: - - txg384b06a526684ab49f48-0065f1be46 + - txg4bae5f5eb558440d9648-0065f45a4d X-Amz-Request-Id: - - txg384b06a526684ab49f48-0065f1be46 + - txg4bae5f5eb558440d9648-0065f45a4d status: 200 OK code: 200 duration: "" @@ -3816,8 +4020,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145502Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/?lifecycle= + - 20240315T142517Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: 1path1/deletedtrueid1Enabled @@ -3827,11 +4031,595 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 13 Mar 2024 14:55:02 GMT + - Fri, 15 Mar 2024 14:25:17 GMT + X-Amz-Id-2: + - txg7993cacf8bcb4f578838-0065f45a4d + X-Amz-Request-Id: + - txg7993cacf8bcb4f578838-0065f45a4d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142517Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ + method: DELETE + response: + body: "" + headers: + Date: + - Fri, 15 Mar 2024 14:25:17 GMT + X-Amz-Id-2: + - txg3c127c33046e41d3a7f5-0065f45a4d + X-Amz-Request-Id: + - txg3c127c33046e41d3a7f5-0065f45a4d + status: 204 No Content + code: 204 + duration: "" +- request: + body: nl-ams + form: {} + headers: + Content-Length: + - "150" + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Acl: + - private + X-Amz-Bucket-Object-Lock-Enabled: + - "true" + X-Amz-Content-Sha256: + - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d + X-Amz-Date: + - 20240315T142517Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ + method: PUT + response: + body: "" + headers: + Content-Length: + - "0" + Date: + - Fri, 15 Mar 2024 14:25:17 GMT + Location: + - /test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 + X-Amz-Id-2: + - txg15256b9fc50e431193fc-0065f45a4d + X-Amz-Request-Id: + - txg15256b9fc50e431193fc-0065f45a4d + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Content-Md5: + - 1B2M2Y8AsgTpgAmY7PhCfg== + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Acl: + - private + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142518Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= + method: PUT + response: + body: "" + headers: + Content-Length: + - "0" + Date: + - Fri, 15 Mar 2024 14:25:18 GMT + X-Amz-Id-2: + - txgea5d1504c48c4659b8d7-0065f45a4e + X-Amz-Request-Id: + - txgea5d1504c48c4659b8d7-0065f45a4e + status: 200 OK + code: 200 + duration: "" +- request: + body: 2tf-scw-bucket-lifecycle-20240315142518474900000001Enabled30tf-scw-bucket-lifecycle-20240315142518474900000002Enabled + form: {} + headers: + Content-Length: + - "472" + Content-Md5: + - Eaqb5JCEvZ/XZu0IMg8Lfg== + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - 842bd049be3b5febed119333e690160ded77392a7c3371a4ffec215e35074bd9 + X-Amz-Date: + - 20240315T142518Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= + method: PUT + response: + body: "" + headers: + Content-Length: + - "0" + Date: + - Fri, 15 Mar 2024 14:25:18 GMT + X-Amz-Id-2: + - txgf58a68162e824e768f6f-0065f45a4e + X-Amz-Request-Id: + - txgf58a68162e824e768f6f-0065f45a4e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142518Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= + method: GET + response: + body: |- + + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:18 GMT + X-Amz-Id-2: + - txge1e082ca56ea4d57811d-0065f45a4e + X-Amz-Request-Id: + - txge1e082ca56ea4d57811d-0065f45a4e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142518Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= + method: GET + response: + body: |- + + Enabled + headers: + Content-Length: + - "184" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:18 GMT + X-Amz-Id-2: + - txgab3454ccfc5d4eb5840d-0065f45a4e + X-Amz-Request-Id: + - txgab3454ccfc5d4eb5840d-0065f45a4e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142518Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ + method: GET + response: + body: |- + + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false + headers: + Content-Length: + - "287" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:18 GMT + X-Amz-Id-2: + - txg04aa211638cb4a3abec7-0065f45a4e + X-Amz-Request-Id: + - txg04aa211638cb4a3abec7-0065f45a4e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142518Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= + method: GET + response: + body: NoSuchTagSetThe TagSet does not existtxgbf8a334f95dd4a889d30-0065f45a4etxgbf8a334f95dd4a889d30-0065f45a4e/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 + headers: + Content-Length: + - "361" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:18 GMT + X-Amz-Id-2: + - txgbf8a334f95dd4a889d30-0065f45a4e + X-Amz-Request-Id: + - txgbf8a334f95dd4a889d30-0065f45a4e + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142518Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= + method: GET + response: + body: NoSuchCORSConfigurationThe CORS configuration + does not existtxgcb5b6ea16e7140d5a5eb-0065f45a4etxgcb5b6ea16e7140d5a5eb-0065f45a4e/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 + headers: + Content-Length: + - "298" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:18 GMT + X-Amz-Id-2: + - txgcb5b6ea16e7140d5a5eb-0065f45a4e + X-Amz-Request-Id: + - txgcb5b6ea16e7140d5a5eb-0065f45a4e + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142518Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= + method: GET + response: + body: |- + + Enabled + headers: + Content-Length: + - "162" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:18 GMT + X-Amz-Id-2: + - txg8dcbca0a74ae45e58a6d-0065f45a4e + X-Amz-Request-Id: + - txg8dcbca0a74ae45e58a6d-0065f45a4e + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= + method: GET + response: + body: 2tf-scw-bucket-lifecycle-20240315142518474900000001Enabled30tf-scw-bucket-lifecycle-20240315142518474900000002Enabled + headers: + Content-Length: + - "472" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Id-2: + - txgc422dc3cb8d049b7b9cc-0065f45a4f + X-Amz-Request-Id: + - txgc422dc3cb8d049b7b9cc-0065f45a4f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ + method: HEAD + response: + body: "" + headers: + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Bucket-Region: + - nl-ams + X-Amz-Id-2: + - txgca8b6894de1d4a399aff-0065f45a4f + X-Amz-Request-Id: + - txgca8b6894de1d4a399aff-0065f45a4f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= + method: GET + response: + body: 2tf-scw-bucket-lifecycle-20240315142518474900000001Enabled30tf-scw-bucket-lifecycle-20240315142518474900000002Enabled + headers: + Content-Length: + - "472" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Id-2: + - txg0b69f759d8ac48858417-0065f45a4f + X-Amz-Request-Id: + - txg0b69f759d8ac48858417-0065f45a4f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?acl= + method: GET + response: + body: |- + + fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Id-2: + - txge228134dcf9f40bd96f7-0065f45a4f + X-Amz-Request-Id: + - txge228134dcf9f40bd96f7-0065f45a4f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?object-lock= + method: GET + response: + body: |- + + Enabled + headers: + Content-Length: + - "184" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Id-2: + - txgee854ce85612416e9494-0065f45a4f + X-Amz-Request-Id: + - txgee854ce85612416e9494-0065f45a4f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ + method: GET + response: + body: |- + + test-acc-scaleway-object-bucket-lifecycle-12248452667569174891000false + headers: + Content-Length: + - "287" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Id-2: + - txg477470e7fa694592a9c1-0065f45a4f + X-Amz-Request-Id: + - txg477470e7fa694592a9c1-0065f45a4f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?tagging= + method: GET + response: + body: NoSuchTagSetThe TagSet does not existtxgbf19cbb4695d41acb44d-0065f45a4ftxgbf19cbb4695d41acb44d-0065f45a4f/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 + headers: + Content-Length: + - "361" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Id-2: + - txgbf19cbb4695d41acb44d-0065f45a4f + X-Amz-Request-Id: + - txgbf19cbb4695d41acb44d-0065f45a4f + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?cors= + method: GET + response: + body: NoSuchCORSConfigurationThe CORS configuration + does not existtxg78e1356749f84c53a419-0065f45a4ftxg78e1356749f84c53a419-0065f45a4f/test-acc-scaleway-object-bucket-lifecycle-1224845266756917489 + headers: + Content-Length: + - "298" + Content-Type: + - application/xml + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Id-2: + - txg78e1356749f84c53a419-0065f45a4f + X-Amz-Request-Id: + - txg78e1356749f84c53a419-0065f45a4f + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?versioning= + method: GET + response: + body: |- + + Enabled + headers: + Content-Length: + - "162" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:19 GMT + X-Amz-Id-2: + - txgb1e7b6cdda324645b2b8-0065f45a4f + X-Amz-Request-Id: + - txgb1e7b6cdda324645b2b8-0065f45a4f + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.50.30 (go1.22.0; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20240315T142519Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/?lifecycle= + method: GET + response: + body: 2tf-scw-bucket-lifecycle-20240315142518474900000001Enabled30tf-scw-bucket-lifecycle-20240315142518474900000002Enabled + headers: + Content-Length: + - "472" + Content-Type: + - text/plain; charset=utf-8 + Date: + - Fri, 15 Mar 2024 14:25:19 GMT X-Amz-Id-2: - - txgf58ef297c45b462c8024-0065f1be46 + - txg6f5bc98bd7594b94876e-0065f45a4f X-Amz-Request-Id: - - txgf58ef297c45b462c8024-0065f1be46 + - txg6f5bc98bd7594b94876e-0065f45a4f status: 200 OK code: 200 duration: "" @@ -3844,18 +4632,18 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20240313T145502Z - url: https://test-acc-scaleway-object-bucket-lifecycle-6135316300084282876.s3.nl-ams.scw.cloud/ + - 20240315T142520Z + url: https://test-acc-scaleway-object-bucket-lifecycle-1224845266756917489.s3.nl-ams.scw.cloud/ method: DELETE response: body: "" headers: Date: - - Wed, 13 Mar 2024 14:55:02 GMT + - Fri, 15 Mar 2024 14:25:20 GMT X-Amz-Id-2: - - txge40437abe030446ba232-0065f1be46 + - txg4fd31e7112174c398d28-0065f45a50 X-Amz-Request-Id: - - txge40437abe030446ba232-0065f1be46 + - txg4fd31e7112174c398d28-0065f45a50 status: 204 No Content code: 204 duration: ""