From 806cb2e38e45aabb6603d82e15a59d72b91c7bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20MARABESE?= Date: Thu, 30 Nov 2023 17:00:20 +0100 Subject: [PATCH 1/4] test(object): acl: all tests OK on fr-par --- scaleway/resource_object_bucket_acl_test.go | 27 +- .../object-bucket-acl-basic.cassette.yaml | 744 ++++++++++-------- ...ucket-acl-grantee-with-owner.cassette.yaml | 382 ++++----- .../object-bucket-acl-grantee.cassette.yaml | 476 ++++++----- 4 files changed, 860 insertions(+), 769 deletions(-) diff --git a/scaleway/resource_object_bucket_acl_test.go b/scaleway/resource_object_bucket_acl_test.go index 99468435e..eca0e6bbc 100644 --- a/scaleway/resource_object_bucket_acl_test.go +++ b/scaleway/resource_object_bucket_acl_test.go @@ -22,16 +22,17 @@ func TestAccScalewayObjectBucketACL_Basic(t *testing.T) { Config: fmt.Sprintf(` resource "scaleway_object_bucket" "main" { name = "%s" - region = "nl-ams" + region = "%s" } resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name acl = "private" - region = "nl-ams" + region = %[2]q } - `, testBucketName), + `, testBucketName, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "acl", "private"), ), @@ -40,16 +41,17 @@ func TestAccScalewayObjectBucketACL_Basic(t *testing.T) { Config: fmt.Sprintf(` resource "scaleway_object_bucket" "main" { name = "%s" - region = "nl-ams" + region = "%s" } resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name acl = "public-read" - region = "nl-ams" + region = %[2]q } - `, testBucketName), + `, testBucketName, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "acl", "public-read"), ), @@ -74,10 +76,12 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { Config: fmt.Sprintf(` resource "scaleway_object_bucket" "main" { name = "%[1]s" + region = "%[3]s" } resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name + region = %[3]q access_control_policy { grant { grantee { @@ -100,7 +104,7 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { } } } - `, testBucketName, ownerID), + `, testBucketName, ownerID, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), @@ -110,10 +114,12 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { Config: fmt.Sprintf(` resource "scaleway_object_bucket" "main" { name = "%[1]s" + region = "%[4]s" } resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name + region = %[4]q access_control_policy { grant { grantee { @@ -144,7 +150,7 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { } } } - `, testBucketName, ownerID, ownerIDChild), + `, testBucketName, ownerID, ownerIDChild, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), @@ -173,10 +179,12 @@ func TestAccScalewayObjectBucketACL_GranteeWithOwner(t *testing.T) { Config: fmt.Sprintf(` resource "scaleway_object_bucket" "main" { name = "%[1]s" + region = "%[3]s" } resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name + region = "%[3]s" expected_bucket_owner = "%[2]s" access_control_policy { grant { @@ -200,8 +208,9 @@ func TestAccScalewayObjectBucketACL_GranteeWithOwner(t *testing.T) { } } } - `, testBucketName, ownerID), + `, testBucketName, ownerID, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), ), }, diff --git a/scaleway/testdata/object-bucket-acl-basic.cassette.yaml b/scaleway/testdata/object-bucket-acl-basic.cassette.yaml index cbbb5857d..8199ee8a7 100644 --- a/scaleway/testdata/object-bucket-acl-basic.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-basic.cassette.yaml @@ -2,38 +2,36 @@ version: 1 interactions: - request: - body: nl-ams + body: fr-par form: {} headers: Content-Length: - "150" User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Acl: - private X-Amz-Bucket-Object-Lock-Enabled: - "false" X-Amz-Content-Sha256: - - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d + - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060 X-Amz-Date: - - 20230228T101834Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/ + - 20231130T155857Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:18:36 GMT + - Thu, 30 Nov 2023 15:58:57 GMT Location: - - /test-acc-scaleway-object-acl-basic-5011803562457777511 + - /test-acc-scaleway-object-acl-basic-6058286161930304231 X-Amz-Id-2: - - txa0a2935fb26f4c8c93ee7-0063fdd4fb + - txgaafabf7f695f4bb58ac9-006568b141 X-Amz-Request-Id: - - txa0a2935fb26f4c8c93ee7-0063fdd4fb + - txgaafabf7f695f4bb58ac9-006568b141 status: 200 OK code: 200 duration: "" @@ -44,28 +42,26 @@ interactions: Content-Md5: - 1B2M2Y8AsgTpgAmY7PhCfg== User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Acl: - private X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101836Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:18:36 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - txceed33af9f1c41ab8321a-0063fdd4fc + - txg73173f0694cf42329703-006568b142 X-Amz-Request-Id: - - txceed33af9f1c41ab8321a-0063fdd4fc + - txg73173f0694cf42329703-006568b142 status: 200 OK code: 200 duration: "" @@ -74,28 +70,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101836Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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 + + 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 headers: Content-Length: - "698" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:36 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - tx30b6b2ba4ae541368bd06-0063fdd4fc + - txga6653ac2bf7948e6b8d0-006568b142 X-Amz-Request-Id: - - tx30b6b2ba4ae541368bd06-0063fdd4fc + - txga6653ac2bf7948e6b8d0-006568b142 status: 200 OK code: 200 duration: "" @@ -104,26 +100,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101836Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?object-lock= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?object-lock= method: GET response: - body: |- - - ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettx06675629b5e04bb98bd51-0063fdd4fc + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-basic-6058286161930304231txg9ad2b85e048e488cb297-006568b142 headers: + Content-Length: + - "272" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:36 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - tx06675629b5e04bb98bd51-0063fdd4fc + - txg9ad2b85e048e488cb297-006568b142 X-Amz-Request-Id: - - tx06675629b5e04bb98bd51-0063fdd4fc + - txg9ad2b85e048e488cb297-006568b142 status: 404 Not Found code: 404 duration: "" @@ -132,28 +129,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101836Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/ + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ method: GET response: body: |- - - test-acc-scaleway-object-acl-basic-50118035624577775111000false + + test-acc-scaleway-object-acl-basic-60582861619303042311000false headers: Content-Length: - - "276" + - "280" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:37 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - tx5bed5f4f7a4e4b889f27b-0063fdd4fc + - txg6658ed84b7c84791be78-006568b142 X-Amz-Request-Id: - - tx5bed5f4f7a4e4b889f27b-0063fdd4fc + - txg6658ed84b7c84791be78-006568b142 status: 200 OK code: 200 duration: "" @@ -162,26 +159,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101837Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?tagging= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: |- - - NoSuchTagSetThere is no tag set associated with the bucket or object.tx51b4f4be5df0484f8e508-0063fdd4fd + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg9665c706b8314b5a9ea8-006568b142 headers: + Content-Length: + - "217" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:37 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - tx51b4f4be5df0484f8e508-0063fdd4fd + - txg9665c706b8314b5a9ea8-006568b142 X-Amz-Request-Id: - - tx51b4f4be5df0484f8e508-0063fdd4fd + - txg9665c706b8314b5a9ea8-006568b142 status: 404 Not Found code: 404 duration: "" @@ -190,26 +187,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101837Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?cors= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?cors= method: GET response: - body: |- - - NoSuchCORSConfigurationThe CORS configuration does not existtx030f4c25fe814481ac731-0063fdd4fd + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg6e95d7ab66f64d84bcba-006568b142 headers: + Content-Length: + - "240" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:37 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - tx030f4c25fe814481ac731-0063fdd4fd + - txg6e95d7ab66f64d84bcba-006568b142 X-Amz-Request-Id: - - tx030f4c25fe814481ac731-0063fdd4fd + - txg6e95d7ab66f64d84bcba-006568b142 status: 404 Not Found code: 404 duration: "" @@ -218,28 +216,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101837Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?versioning= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- - - + + headers: Content-Length: - - "113" + - "138" Content-Type: - - text/plain + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:37 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - tx9d569d5cf35745c89cf2f-0063fdd4fd + - txg9851e1120094428389ac-006568b142 X-Amz-Request-Id: - - tx9d569d5cf35745c89cf2f-0063fdd4fd + - txg9851e1120094428389ac-006568b142 status: 200 OK code: 200 duration: "" @@ -248,26 +246,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101837Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?lifecycle= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?lifecycle= method: GET response: - body: |- - - NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.tx8e0089d6cd274f3396b6d-0063fdd4fd + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgb19c1e63757e43d29817-006568b142 headers: + Content-Length: + - "250" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:37 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - tx8e0089d6cd274f3396b6d-0063fdd4fd + - txgb19c1e63757e43d29817-006568b142 X-Amz-Request-Id: - - tx8e0089d6cd274f3396b6d-0063fdd4fd + - txgb19c1e63757e43d29817-006568b142 status: 404 Not Found code: 404 duration: "" @@ -278,28 +277,26 @@ interactions: Content-Md5: - 1B2M2Y8AsgTpgAmY7PhCfg== User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Acl: - private X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101837Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:18:38 GMT + - Thu, 30 Nov 2023 15:58:58 GMT X-Amz-Id-2: - - tx776c04bf847d471f8e74d-0063fdd4fd + - txgb008734a5aeb4408ad30-006568b142 X-Amz-Request-Id: - - tx776c04bf847d471f8e74d-0063fdd4fd + - txgb008734a5aeb4408ad30-006568b142 status: 200 OK code: 200 duration: "" @@ -308,28 +305,56 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101838Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155858Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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 + + 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 headers: Content-Length: - "698" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 15:58:59 GMT + X-Amz-Id-2: + - txg133227b3cdaf4762a780-006568b143 + X-Amz-Request-Id: + - txg133227b3cdaf4762a780-006568b143 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + method: HEAD + response: + body: "" + headers: + Content-Type: + - application/xml Date: - - Tue, 28 Feb 2023 10:18:38 GMT + - Thu, 30 Nov 2023 15:58:59 GMT + X-Amz-Bucket-Region: + - fr-par X-Amz-Id-2: - - tx15c88cbe4d7f45e8b48eb-0063fdd4fe + - txg1db73f8d5a764b369f77-006568b143 X-Amz-Request-Id: - - tx15c88cbe4d7f45e8b48eb-0063fdd4fe + - txg1db73f8d5a764b369f77-006568b143 status: 200 OK code: 200 duration: "" @@ -338,28 +363,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101838Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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 + + 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 headers: Content-Length: - "698" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:39 GMT + - Thu, 30 Nov 2023 15:58:59 GMT X-Amz-Id-2: - - txbd468174cf474b569bcbc-0063fdd4fe + - txg9f11d8179d274ba286a3-006568b143 X-Amz-Request-Id: - - txbd468174cf474b569bcbc-0063fdd4fe + - txg9f11d8179d274ba286a3-006568b143 status: 200 OK code: 200 duration: "" @@ -368,26 +393,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101838Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?object-lock= + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?object-lock= method: GET response: - body: |- - - ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettx3e41f4b994494d3097cad-0063fdd4ff + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-basic-6058286161930304231txge894162041264fb5a320-006568b143 headers: + Content-Length: + - "272" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:39 GMT + - Thu, 30 Nov 2023 15:58:59 GMT X-Amz-Id-2: - - tx3e41f4b994494d3097cad-0063fdd4ff + - txge894162041264fb5a320-006568b143 X-Amz-Request-Id: - - tx3e41f4b994494d3097cad-0063fdd4ff + - txge894162041264fb5a320-006568b143 status: 404 Not Found code: 404 duration: "" @@ -396,28 +422,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101839Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/ + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ method: GET response: body: |- - - test-acc-scaleway-object-acl-basic-50118035624577775111000false + + test-acc-scaleway-object-acl-basic-60582861619303042311000false headers: Content-Length: - - "276" + - "280" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:39 GMT + - Thu, 30 Nov 2023 15:58:59 GMT X-Amz-Id-2: - - txbe9e3636528040f0a3700-0063fdd4ff + - txg4609057b090d42c895d6-006568b143 X-Amz-Request-Id: - - txbe9e3636528040f0a3700-0063fdd4ff + - txg4609057b090d42c895d6-006568b143 status: 200 OK code: 200 duration: "" @@ -426,26 +452,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101839Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?tagging= + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: |- - - NoSuchTagSetThere is no tag set associated with the bucket or object.tx467258882ffc4f09842be-0063fdd4ff + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgd99959a6e43f4513a45d-006568b143 headers: + Content-Length: + - "217" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:39 GMT + - Thu, 30 Nov 2023 15:58:59 GMT X-Amz-Id-2: - - tx467258882ffc4f09842be-0063fdd4ff + - txgd99959a6e43f4513a45d-006568b143 X-Amz-Request-Id: - - tx467258882ffc4f09842be-0063fdd4ff + - txgd99959a6e43f4513a45d-006568b143 status: 404 Not Found code: 404 duration: "" @@ -454,26 +480,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101839Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?cors= + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?cors= method: GET response: - body: |- - - NoSuchCORSConfigurationThe CORS configuration does not existtxb75ee1cc56ed460f9d2f0-0063fdd4ff + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg9dfb3b3d627d4c74b884-006568b143 headers: + Content-Length: + - "240" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:39 GMT + - Thu, 30 Nov 2023 15:58:59 GMT X-Amz-Id-2: - - txb75ee1cc56ed460f9d2f0-0063fdd4ff + - txg9dfb3b3d627d4c74b884-006568b143 X-Amz-Request-Id: - - txb75ee1cc56ed460f9d2f0-0063fdd4ff + - txg9dfb3b3d627d4c74b884-006568b143 status: 404 Not Found code: 404 duration: "" @@ -482,28 +509,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101839Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?versioning= + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- - - + + headers: Content-Length: - - "113" + - "138" Content-Type: - - text/plain + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:39 GMT + - Thu, 30 Nov 2023 15:58:59 GMT X-Amz-Id-2: - - tx021829d86ee74d489dce0-0063fdd4ff + - txg85d9bafcbda74df5a2b3-006568b143 X-Amz-Request-Id: - - tx021829d86ee74d489dce0-0063fdd4ff + - txg85d9bafcbda74df5a2b3-006568b143 status: 200 OK code: 200 duration: "" @@ -512,26 +539,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101839Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?lifecycle= + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?lifecycle= method: GET response: - body: |- - - NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.txa89e7ba3466e4566a83f4-0063fdd4ff + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgd68ed085d1cf48d18060-006568b143 headers: + Content-Length: + - "250" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:40 GMT + - Thu, 30 Nov 2023 15:58:59 GMT X-Amz-Id-2: - - txa89e7ba3466e4566a83f4-0063fdd4ff + - txgd68ed085d1cf48d18060-006568b143 X-Amz-Request-Id: - - txa89e7ba3466e4566a83f4-0063fdd4ff + - txgd68ed085d1cf48d18060-006568b143 status: 404 Not Found code: 404 duration: "" @@ -540,28 +568,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101840Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155859Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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 + + 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 headers: Content-Length: - "698" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:40 GMT + - Thu, 30 Nov 2023 15:58:59 GMT X-Amz-Id-2: - - txa66bb7c497544ac48ab4e-0063fdd500 + - txg6d34190b961f4d52954d-006568b143 X-Amz-Request-Id: - - txa66bb7c497544ac48ab4e-0063fdd500 + - txg6d34190b961f4d52954d-006568b143 status: 200 OK code: 200 duration: "" @@ -570,28 +598,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101840Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155900Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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 + + 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 headers: Content-Length: - "698" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:41 GMT + - Thu, 30 Nov 2023 15:59:00 GMT X-Amz-Id-2: - - tx3d9925685abd478aa2dfc-0063fdd500 + - txgd3b6e1258b9d4da781c2-006568b144 X-Amz-Request-Id: - - tx3d9925685abd478aa2dfc-0063fdd500 + - txgd3b6e1258b9d4da781c2-006568b144 status: 200 OK code: 200 duration: "" @@ -600,26 +628,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101840Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?object-lock= + - 20231130T155900Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?object-lock= method: GET response: - body: |- - - ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxee014df3501e4b81ab2fe-0063fdd501 + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-basic-6058286161930304231txg9fbf7c90686c4ee4baa8-006568b144 headers: + Content-Length: + - "272" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:41 GMT + - Thu, 30 Nov 2023 15:59:00 GMT X-Amz-Id-2: - - txee014df3501e4b81ab2fe-0063fdd501 + - txg9fbf7c90686c4ee4baa8-006568b144 X-Amz-Request-Id: - - txee014df3501e4b81ab2fe-0063fdd501 + - txg9fbf7c90686c4ee4baa8-006568b144 status: 404 Not Found code: 404 duration: "" @@ -628,28 +657,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101841Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/ + - 20231130T155900Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ method: GET response: body: |- - - test-acc-scaleway-object-acl-basic-50118035624577775111000false + + test-acc-scaleway-object-acl-basic-60582861619303042311000false headers: Content-Length: - - "276" + - "280" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:41 GMT + - Thu, 30 Nov 2023 15:59:00 GMT X-Amz-Id-2: - - txead68c146d804008a60dc-0063fdd501 + - txg7bb28937aff04b42956a-006568b144 X-Amz-Request-Id: - - txead68c146d804008a60dc-0063fdd501 + - txg7bb28937aff04b42956a-006568b144 status: 200 OK code: 200 duration: "" @@ -658,26 +687,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101841Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?tagging= + - 20231130T155900Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: |- - - NoSuchTagSetThere is no tag set associated with the bucket or object.tx997794ed833f4dd59e15d-0063fdd501 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgd768a22ff27c41e18f32-006568b144 headers: + Content-Length: + - "217" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:41 GMT + - Thu, 30 Nov 2023 15:59:00 GMT X-Amz-Id-2: - - tx997794ed833f4dd59e15d-0063fdd501 + - txgd768a22ff27c41e18f32-006568b144 X-Amz-Request-Id: - - tx997794ed833f4dd59e15d-0063fdd501 + - txgd768a22ff27c41e18f32-006568b144 status: 404 Not Found code: 404 duration: "" @@ -686,26 +715,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101841Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?cors= + - 20231130T155900Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?cors= method: GET response: - body: |- - - NoSuchCORSConfigurationThe CORS configuration does not existtx2c48e12eb4e84e659bd32-0063fdd501 + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg5183d024e96545e3821b-006568b144 headers: + Content-Length: + - "240" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:41 GMT + - Thu, 30 Nov 2023 15:59:00 GMT X-Amz-Id-2: - - tx2c48e12eb4e84e659bd32-0063fdd501 + - txg5183d024e96545e3821b-006568b144 X-Amz-Request-Id: - - tx2c48e12eb4e84e659bd32-0063fdd501 + - txg5183d024e96545e3821b-006568b144 status: 404 Not Found code: 404 duration: "" @@ -714,28 +744,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101842Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?versioning= + - 20231130T155900Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- - - + + headers: Content-Length: - - "113" + - "138" Content-Type: - - text/plain + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:42 GMT + - Thu, 30 Nov 2023 15:59:00 GMT X-Amz-Id-2: - - txf70e1312c3554a7c87a0b-0063fdd502 + - txg21d827ad56204dddb728-006568b144 X-Amz-Request-Id: - - txf70e1312c3554a7c87a0b-0063fdd502 + - txg21d827ad56204dddb728-006568b144 status: 200 OK code: 200 duration: "" @@ -744,26 +774,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101842Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?lifecycle= + - 20231130T155900Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?lifecycle= method: GET response: - body: |- - - NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.tx5f523558b6484ba8a4934-0063fdd502 + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgbf2b0248dc97435a8f88-006568b144 headers: + Content-Length: + - "250" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:42 GMT + - Thu, 30 Nov 2023 15:59:00 GMT X-Amz-Id-2: - - tx5f523558b6484ba8a4934-0063fdd502 + - txgbf2b0248dc97435a8f88-006568b144 X-Amz-Request-Id: - - tx5f523558b6484ba8a4934-0063fdd502 + - txgbf2b0248dc97435a8f88-006568b144 status: 404 Not Found code: 404 duration: "" @@ -772,28 +803,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101842Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155900Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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 + + 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 headers: Content-Length: - "698" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:42 GMT + - Thu, 30 Nov 2023 15:59:00 GMT X-Amz-Id-2: - - txc3d76db46c264688b3b3e-0063fdd502 + - txge6bcf1133cef486db539-006568b144 X-Amz-Request-Id: - - txc3d76db46c264688b3b3e-0063fdd502 + - txge6bcf1133cef486db539-006568b144 status: 200 OK code: 200 duration: "" @@ -804,28 +835,26 @@ interactions: Content-Md5: - 1B2M2Y8AsgTpgAmY7PhCfg== User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Acl: - public-read X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101843Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:18:43 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - tx977d611eec7e45358de66-0063fdd503 + - txgfe7113b9c1564115870e-006568b145 X-Amz-Request-Id: - - tx977d611eec7e45358de66-0063fdd503 + - txgfe7113b9c1564115870e-006568b145 status: 200 OK code: 200 duration: "" @@ -834,28 +863,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101843Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + + 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_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD headers: Content-Length: - "890" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:43 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - txc935b45dfb024e71b3be7-0063fdd503 + - txg7f060373bdca4dbbb8ec-006568b145 X-Amz-Request-Id: - - txc935b45dfb024e71b3be7-0063fdd503 + - txg7f060373bdca4dbbb8ec-006568b145 status: 200 OK code: 200 duration: "" @@ -864,28 +893,56 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101843Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + method: HEAD + response: + body: "" + headers: + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 15:59:01 GMT + X-Amz-Bucket-Region: + - fr-par + X-Amz-Id-2: + - txg4342821751b341888ab9-006568b145 + X-Amz-Request-Id: + - txg4342821751b341888ab9-006568b145 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + + 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_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD headers: Content-Length: - "890" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:44 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - tx5f76978d798d4a7c8a9b2-0063fdd504 + - txgaa61fb4edc1a4653883a-006568b145 X-Amz-Request-Id: - - tx5f76978d798d4a7c8a9b2-0063fdd504 + - txgaa61fb4edc1a4653883a-006568b145 status: 200 OK code: 200 duration: "" @@ -894,26 +951,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101844Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?object-lock= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?object-lock= method: GET response: - body: |- - - ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettx08b01870646a4874a0dee-0063fdd504 + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-basic-6058286161930304231txg348136f051674b198c52-006568b145 headers: + Content-Length: + - "272" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:44 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - tx08b01870646a4874a0dee-0063fdd504 + - txg348136f051674b198c52-006568b145 X-Amz-Request-Id: - - tx08b01870646a4874a0dee-0063fdd504 + - txg348136f051674b198c52-006568b145 status: 404 Not Found code: 404 duration: "" @@ -922,28 +980,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101844Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/ + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ method: GET response: body: |- - - test-acc-scaleway-object-acl-basic-50118035624577775111000false + + test-acc-scaleway-object-acl-basic-60582861619303042311000false headers: Content-Length: - - "276" + - "280" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:44 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - txf22fbace10e14c1389ab5-0063fdd504 + - txg00251117d573419ab384-006568b145 X-Amz-Request-Id: - - txf22fbace10e14c1389ab5-0063fdd504 + - txg00251117d573419ab384-006568b145 status: 200 OK code: 200 duration: "" @@ -952,26 +1010,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101844Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?tagging= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: |- - - NoSuchTagSetThere is no tag set associated with the bucket or object.tx3a7b3545757841adbcc66-0063fdd504 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgf91b36bc316145078bb3-006568b145 headers: + Content-Length: + - "217" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:44 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - tx3a7b3545757841adbcc66-0063fdd504 + - txgf91b36bc316145078bb3-006568b145 X-Amz-Request-Id: - - tx3a7b3545757841adbcc66-0063fdd504 + - txgf91b36bc316145078bb3-006568b145 status: 404 Not Found code: 404 duration: "" @@ -980,26 +1038,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101844Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?cors= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?cors= method: GET response: - body: |- - - NoSuchCORSConfigurationThe CORS configuration does not existtx5f2f0b7fb92a4a58b2c26-0063fdd504 + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg163f975c3aa14640bfce-006568b145 headers: + Content-Length: + - "240" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:44 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - tx5f2f0b7fb92a4a58b2c26-0063fdd504 + - txg163f975c3aa14640bfce-006568b145 X-Amz-Request-Id: - - tx5f2f0b7fb92a4a58b2c26-0063fdd504 + - txg163f975c3aa14640bfce-006568b145 status: 404 Not Found code: 404 duration: "" @@ -1008,28 +1067,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101844Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?versioning= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- - - + + headers: Content-Length: - - "113" + - "138" Content-Type: - - text/plain + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:44 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - tx08f5634c5a004502ab9b4-0063fdd504 + - txgdc8e7e6f1fe54e548dbe-006568b145 X-Amz-Request-Id: - - tx08f5634c5a004502ab9b4-0063fdd504 + - txgdc8e7e6f1fe54e548dbe-006568b145 status: 200 OK code: 200 duration: "" @@ -1038,26 +1097,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101844Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?lifecycle= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?lifecycle= method: GET response: - body: |- - - NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.txa02f272cfe5b48f3ac5d8-0063fdd504 + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txge19060c7ca8344fb9166-006568b145 headers: + Content-Length: + - "250" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:45 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - txa02f272cfe5b48f3ac5d8-0063fdd504 + - txge19060c7ca8344fb9166-006568b145 X-Amz-Request-Id: - - txa02f272cfe5b48f3ac5d8-0063fdd504 + - txge19060c7ca8344fb9166-006568b145 status: 404 Not Found code: 404 duration: "" @@ -1066,28 +1126,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101844Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/?acl= + - 20231130T155901Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.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-868455867ecfhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + + 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_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD headers: Content-Length: - "890" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:45 GMT + - Thu, 30 Nov 2023 15:59:01 GMT X-Amz-Id-2: - - txd64d46fc3b8b4476b4903-0063fdd505 + - txgc40c3ffd6cbb412d9e5f-006568b145 X-Amz-Request-Id: - - txd64d46fc3b8b4476b4903-0063fdd505 + - txgc40c3ffd6cbb412d9e5f-006568b145 status: 200 OK code: 200 duration: "" @@ -1096,12 +1156,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101845Z - url: https://test-acc-scaleway-object-acl-basic-5011803562457777511.s3.nl-ams.scw.cloud/ + - 20231130T155902Z + url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ method: DELETE response: body: "" @@ -1111,11 +1171,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:18:46 GMT + - Thu, 30 Nov 2023 15:59:02 GMT X-Amz-Id-2: - - tx248d4ed5246c42988c3eb-0063fdd505 + - txb621b9d9be3e4214b997c-006568b146 X-Amz-Request-Id: - - tx248d4ed5246c42988c3eb-0063fdd505 + - txb621b9d9be3e4214b997c-006568b146 status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml b/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml index 13abd9acd..a82768d9c 100644 --- a/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml @@ -8,7 +8,7 @@ interactions: Content-Length: - "150" User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Acl: - private X-Amz-Bucket-Object-Lock-Enabled: @@ -16,24 +16,22 @@ interactions: X-Amz-Content-Sha256: - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060 X-Amz-Date: - - 20230228T101856Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/ + - 20231130T155911Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:18:57 GMT + - Thu, 30 Nov 2023 15:59:11 GMT Location: - - /test-acc-scaleway-object-acl-grantee-owner-8391415195028496641 + - /test-acc-scaleway-object-acl-grantee-owner-6010384420151799568 X-Amz-Id-2: - - txd2e57bcc52f3441c910a3-0063fdd510 + - txg7d596590aca94ce49614-006568b14f X-Amz-Request-Id: - - txd2e57bcc52f3441c910a3-0063fdd510 + - txg7d596590aca94ce49614-006568b14f status: 200 OK code: 200 duration: "" @@ -44,28 +42,26 @@ interactions: Content-Md5: - 1B2M2Y8AsgTpgAmY7PhCfg== User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Acl: - private X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101857Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?acl= + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - tx4a99d42433f845c18b4a5-0063fdd511 + - txg526a972c6f0f491cbe42-006568b150 X-Amz-Request-Id: - - tx4a99d42433f845c18b4a5-0063fdd511 + - txg526a972c6f0f491cbe42-006568b150 status: 200 OK code: 200 duration: "" @@ -74,28 +70,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101857Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?acl= + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.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 + + 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 headers: Content-Length: - "698" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - tx7118027f669c4a41973ad-0063fdd512 + - txgabb1d8662c2b4444bd70-006568b150 X-Amz-Request-Id: - - tx7118027f669c4a41973ad-0063fdd512 + - txgabb1d8662c2b4444bd70-006568b150 status: 200 OK code: 200 duration: "" @@ -104,26 +100,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101857Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?object-lock= + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?object-lock= method: GET response: - body: |- - - ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxafc573121058461c96590-0063fdd512 + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txga0780ec1f6ac4817a8dd-006568b150 headers: + Content-Length: + - "280" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - txafc573121058461c96590-0063fdd512 + - txga0780ec1f6ac4817a8dd-006568b150 X-Amz-Request-Id: - - txafc573121058461c96590-0063fdd512 + - txga0780ec1f6ac4817a8dd-006568b150 status: 404 Not Found code: 404 duration: "" @@ -132,28 +129,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101858Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/ + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ method: GET response: body: |- - - test-acc-scaleway-object-acl-grantee-owner-83914151950284966411000false + + test-acc-scaleway-object-acl-grantee-owner-60103844201517995681000false headers: Content-Length: - - "284" + - "288" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - tx50b118e3033e4f6690687-0063fdd512 + - txgcf6d5c2871234364bcca-006568b150 X-Amz-Request-Id: - - tx50b118e3033e4f6690687-0063fdd512 + - txgcf6d5c2871234364bcca-006568b150 status: 200 OK code: 200 duration: "" @@ -162,26 +159,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101858Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?tagging= + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: |- - - NoSuchTagSetThere is no tag set associated with the bucket or object.txb9f0a3a641bc4ed5bc0e3-0063fdd512 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txgb7d53ec7c3fb47aea223-006568b150 headers: + Content-Length: + - "225" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - txb9f0a3a641bc4ed5bc0e3-0063fdd512 + - txgb7d53ec7c3fb47aea223-006568b150 X-Amz-Request-Id: - - txb9f0a3a641bc4ed5bc0e3-0063fdd512 + - txgb7d53ec7c3fb47aea223-006568b150 status: 404 Not Found code: 404 duration: "" @@ -190,26 +187,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101858Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?cors= + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?cors= method: GET response: - body: |- - - NoSuchCORSConfigurationThe CORS configuration does not existtxb5779aa595344d6a9cb6f-0063fdd512 + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txg599873135a564c76a1b7-006568b150 headers: + Content-Length: + - "248" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - txb5779aa595344d6a9cb6f-0063fdd512 + - txg599873135a564c76a1b7-006568b150 X-Amz-Request-Id: - - txb5779aa595344d6a9cb6f-0063fdd512 + - txg599873135a564c76a1b7-006568b150 status: 404 Not Found code: 404 duration: "" @@ -218,28 +216,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101858Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?versioning= + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- - - + + headers: Content-Length: - - "113" + - "138" Content-Type: - - text/plain + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - tx07dbd7c540894d9e9f068-0063fdd512 + - txg9f4f80b2fe124d34a405-006568b150 X-Amz-Request-Id: - - tx07dbd7c540894d9e9f068-0063fdd512 + - txg9f4f80b2fe124d34a405-006568b150 status: 200 OK code: 200 duration: "" @@ -248,26 +246,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101858Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?lifecycle= method: GET response: - body: |- - - NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.txb8d74502a7624ad49c0fd-0063fdd512 + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txg70231ef5cf9d48b9b180-006568b150 headers: + Content-Length: + - "258" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - txb8d74502a7624ad49c0fd-0063fdd512 + - txg70231ef5cf9d48b9b180-006568b150 X-Amz-Request-Id: - - txb8d74502a7624ad49c0fd-0063fdd512 + - txg70231ef5cf9d48b9b180-006568b150 status: 404 Not Found code: 404 duration: "" @@ -282,28 +281,26 @@ interactions: Content-Md5: - hyolSq3koUeG8L+6oSV/Yw== User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - 894d438eed42dfd288716d6ff6a48b6be5515e9452ed58d924757813130fdf06 X-Amz-Date: - - 20230228T101858Z + - 20231130T155912Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?acl= + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - tx02fd68c000c54c238b383-0063fdd512 + - txge67cb240abd1437498a8-006568b150 X-Amz-Request-Id: - - tx02fd68c000c54c238b383-0063fdd512 + - txge67cb240abd1437498a8-006568b150 status: 200 OK code: 200 duration: "" @@ -312,30 +309,30 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101858Z + - 20231130T155912Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?acl= + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.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-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + + 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-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "1023" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:58 GMT + - Thu, 30 Nov 2023 15:59:12 GMT X-Amz-Id-2: - - tx81bf5b16121b4065b3575-0063fdd512 + - txg3b5c9a0b98b141bd9ab1-006568b150 X-Amz-Request-Id: - - tx81bf5b16121b4065b3575-0063fdd512 + - txg3b5c9a0b98b141bd9ab1-006568b150 status: 200 OK code: 200 duration: "" @@ -344,28 +341,56 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101859Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?acl= + - 20231130T155912Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ + method: HEAD + response: + body: "" + headers: + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 15:59:12 GMT + X-Amz-Bucket-Region: + - fr-par + X-Amz-Id-2: + - txg6e1e8480f57f4eb1bc65-006568b150 + X-Amz-Request-Id: + - txg6e1e8480f57f4eb1bc65-006568b150 + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T155913Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.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-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + + 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-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "1023" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:59 GMT + - Thu, 30 Nov 2023 15:59:13 GMT X-Amz-Id-2: - - tx54b167f997314d719de16-0063fdd513 + - txg7aafa784d7ce4312a5b7-006568b151 X-Amz-Request-Id: - - tx54b167f997314d719de16-0063fdd513 + - txg7aafa784d7ce4312a5b7-006568b151 status: 200 OK code: 200 duration: "" @@ -374,26 +399,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101859Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?object-lock= + - 20231130T155913Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?object-lock= method: GET response: - body: |- - - ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxa0ef77d1b3904275a36b0-0063fdd513 + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txg515515ffbead42ee9480-006568b151 headers: + Content-Length: + - "280" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:59 GMT + - Thu, 30 Nov 2023 15:59:13 GMT X-Amz-Id-2: - - txa0ef77d1b3904275a36b0-0063fdd513 + - txg515515ffbead42ee9480-006568b151 X-Amz-Request-Id: - - txa0ef77d1b3904275a36b0-0063fdd513 + - txg515515ffbead42ee9480-006568b151 status: 404 Not Found code: 404 duration: "" @@ -402,28 +428,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101859Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/ + - 20231130T155913Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ method: GET response: body: |- - - test-acc-scaleway-object-acl-grantee-owner-83914151950284966411000false + + test-acc-scaleway-object-acl-grantee-owner-60103844201517995681000false headers: Content-Length: - - "284" + - "288" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:59 GMT + - Thu, 30 Nov 2023 15:59:13 GMT X-Amz-Id-2: - - tx1a591c71d90a4e009e70a-0063fdd513 + - txg82d4c097e03140669eec-006568b151 X-Amz-Request-Id: - - tx1a591c71d90a4e009e70a-0063fdd513 + - txg82d4c097e03140669eec-006568b151 status: 200 OK code: 200 duration: "" @@ -432,26 +458,26 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101859Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?tagging= + - 20231130T155913Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: |- - - NoSuchTagSetThere is no tag set associated with the bucket or object.tx7c093103e7fa4600957dc-0063fdd513 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txga7e0479e8ae049b0828f-006568b151 headers: + Content-Length: + - "225" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:59 GMT + - Thu, 30 Nov 2023 15:59:13 GMT X-Amz-Id-2: - - tx7c093103e7fa4600957dc-0063fdd513 + - txga7e0479e8ae049b0828f-006568b151 X-Amz-Request-Id: - - tx7c093103e7fa4600957dc-0063fdd513 + - txga7e0479e8ae049b0828f-006568b151 status: 404 Not Found code: 404 duration: "" @@ -460,26 +486,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101859Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?cors= + - 20231130T155913Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?cors= method: GET response: - body: |- - - NoSuchCORSConfigurationThe CORS configuration does not existtxc9c521585a5a4973ba81b-0063fdd513 + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txg91104622b5004d9388a9-006568b151 headers: + Content-Length: + - "248" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:59 GMT + - Thu, 30 Nov 2023 15:59:13 GMT X-Amz-Id-2: - - txc9c521585a5a4973ba81b-0063fdd513 + - txg91104622b5004d9388a9-006568b151 X-Amz-Request-Id: - - txc9c521585a5a4973ba81b-0063fdd513 + - txg91104622b5004d9388a9-006568b151 status: 404 Not Found code: 404 duration: "" @@ -488,28 +515,28 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101859Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?versioning= + - 20231130T155913Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- - - + + headers: Content-Length: - - "113" + - "138" Content-Type: - - text/plain + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:59 GMT + - Thu, 30 Nov 2023 15:59:13 GMT X-Amz-Id-2: - - tx3f9e0ade1a484a9fa2568-0063fdd513 + - txg15e46d9cb8094dc0838f-006568b151 X-Amz-Request-Id: - - tx3f9e0ade1a484a9fa2568-0063fdd513 + - txg15e46d9cb8094dc0838f-006568b151 status: 200 OK code: 200 duration: "" @@ -518,26 +545,27 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101859Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T155913Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?lifecycle= method: GET response: - body: |- - - NoSuchLifecycleConfigurationThe lifecycle configuration does not exist.txcdfc973350b4492a88dcf-0063fdd513 + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txgb36411e7050f4bb787c3-006568b151 headers: + Content-Length: + - "258" Content-Type: - application/xml Date: - - Tue, 28 Feb 2023 10:18:59 GMT + - Thu, 30 Nov 2023 15:59:13 GMT X-Amz-Id-2: - - txcdfc973350b4492a88dcf-0063fdd513 + - txgb36411e7050f4bb787c3-006568b151 X-Amz-Request-Id: - - txcdfc973350b4492a88dcf-0063fdd513 + - txgb36411e7050f4bb787c3-006568b151 status: 404 Not Found code: 404 duration: "" @@ -546,30 +574,30 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101859Z + - 20231130T155913Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/?acl= + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.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-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + + 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-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "1023" Content-Type: - - text/html; charset=UTF-8 + - text/xml; charset=utf-8 Date: - - Tue, 28 Feb 2023 10:18:59 GMT + - Thu, 30 Nov 2023 15:59:13 GMT X-Amz-Id-2: - - tx50fbb85468f3464b84079-0063fdd513 + - txg43f53513e600447e8b8d-006568b151 X-Amz-Request-Id: - - tx50fbb85468f3464b84079-0063fdd513 + - txg43f53513e600447e8b8d-006568b151 status: 200 OK code: 200 duration: "" @@ -578,12 +606,12 @@ interactions: form: {} headers: User-Agent: - - aws-sdk-go/1.44.193 (go1.19.5; darwin; amd64) + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20230228T101900Z - url: https://test-acc-scaleway-object-acl-grantee-owner-8391415195028496641.s3.fr-par.scw.cloud/ + - 20231130T155914Z + url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ method: DELETE response: body: "" @@ -593,11 +621,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Tue, 28 Feb 2023 10:19:00 GMT + - Thu, 30 Nov 2023 15:59:14 GMT X-Amz-Id-2: - - tx2b6997686da04e9cbac5b-0063fdd514 + - tx9f10e002a0084b9d95f95-006568b152 X-Amz-Request-Id: - - tx2b6997686da04e9cbac5b-0063fdd514 + - tx9f10e002a0084b9d95f95-006568b152 status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml b/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml index 3080e4597..2be9f0d20 100644 --- a/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml @@ -16,8 +16,8 @@ interactions: X-Amz-Content-Sha256: - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060 X-Amz-Date: - - 20231110T170750Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/ + - 20231130T155903Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:03 GMT Location: - - /test-acc-scaleway-object-acl-grantee-6366892773385556584 + - /test-acc-scaleway-object-acl-grantee-1199758219137333601 X-Amz-Id-2: - - txgf59ad1304af84c55b09b-00654e6367 + - txgf0ebbcbbf0834a5cac96-006568b147 X-Amz-Request-Id: - - txgf59ad1304af84c55b09b-00654e6367 + - txgf0ebbcbbf0834a5cac96-006568b147 status: 200 OK code: 200 duration: "" @@ -48,22 +48,20 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txe8cec72cd9544d2e839db-00654e6367 + - txg49860a5ede6e4869af2a-006568b148 X-Amz-Request-Id: - - txe8cec72cd9544d2e839db-00654e6367 + - txg49860a5ede6e4869af2a-006568b148 status: 200 OK code: 200 duration: "" @@ -76,8 +74,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -89,11 +87,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txg4c41cd9ddb6a4225ba75-00654e6367 + - txgabd11bf768fb48188cc4-006568b148 X-Amz-Request-Id: - - txg4c41cd9ddb6a4225ba75-00654e6367 + - txgabd11bf768fb48188cc4-006568b148 status: 200 OK code: 200 duration: "" @@ -106,23 +104,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?object-lock= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-6366892773385556584txgcf8f749fa27b43c3b901-00654e6367 + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-1199758219137333601txg8689b123ca8d4df6bc14-006568b148 headers: Content-Length: - "274" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txgcf8f749fa27b43c3b901-00654e6367 + - txg8689b123ca8d4df6bc14-006568b148 X-Amz-Request-Id: - - txgcf8f749fa27b43c3b901-00654e6367 + - txg8689b123ca8d4df6bc14-006568b148 status: 404 Not Found code: 404 duration: "" @@ -135,24 +133,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/ + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-63668927733855565841000false + test-acc-scaleway-object-acl-grantee-11997582191373336011000false headers: Content-Length: - "282" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txg651360c832e04ac29555-00654e6367 + - txg2767d629e4474c929958-006568b148 X-Amz-Request-Id: - - txg651360c832e04ac29555-00654e6367 + - txg2767d629e4474c929958-006568b148 status: 200 OK code: 200 duration: "" @@ -165,22 +163,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?tagging= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txgafb85a815f7b4468bc15-00654e6367 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg1de3b8b496b745f7a98a-006568b148 headers: Content-Length: - "219" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txgafb85a815f7b4468bc15-00654e6367 + - txg1de3b8b496b745f7a98a-006568b148 X-Amz-Request-Id: - - txgafb85a815f7b4468bc15-00654e6367 + - txg1de3b8b496b745f7a98a-006568b148 status: 404 Not Found code: 404 duration: "" @@ -193,23 +191,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?cors= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txg41f89f26407246ccb880-00654e6367 + does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg788d8fc58c214651ad33-006568b148 headers: Content-Length: - "242" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txg41f89f26407246ccb880-00654e6367 + - txg788d8fc58c214651ad33-006568b148 X-Amz-Request-Id: - - txg41f89f26407246ccb880-00654e6367 + - txg788d8fc58c214651ad33-006568b148 status: 404 Not Found code: 404 duration: "" @@ -222,8 +220,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?versioning= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- @@ -235,11 +233,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txgf3574ccfa1a646f5a8bf-00654e6367 + - txg9ce67b0877f844e9bd2f-006568b148 X-Amz-Request-Id: - - txgf3574ccfa1a646f5a8bf-00654e6367 + - txg9ce67b0877f844e9bd2f-006568b148 status: 200 OK code: 200 duration: "" @@ -252,57 +250,55 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txg710ed1e5f01c4f4bbf7f-00654e6367 + does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txge2f79c9044094a1caa14-006568b148 headers: Content-Length: - "252" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txg710ed1e5f01c4f4bbf7f-00654e6367 + - txge2f79c9044094a1caa14-006568b148 X-Amz-Request-Id: - - txg710ed1e5f01c4f4bbf7f-00654e6367 + - txge2f79c9044094a1caa14-006568b148 status: 404 Not Found code: 404 duration: "" - request: - body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CanonicalUser">105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL form: {} headers: Content-Length: - "684" Content-Md5: - - hyolSq3koUeG8L+6oSV/Yw== + - RW6tTcucsMvC3MxjLDgCuQ== User-Agent: - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - - 894d438eed42dfd288716d6ff6a48b6be5515e9452ed58d924757813130fdf06 + - 40addeb28501eb9d63de75e496652fa9146db38b6a865ae9a7c52c8f57f66c53 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - tx24cf5adede984a00bbcd7-00654e6367 + - txg545ae474dbd54e1b9a3c-006568b148 X-Amz-Request-Id: - - tx24cf5adede984a00bbcd7-00654e6367 + - txg545ae474dbd54e1b9a3c-006568b148 status: 200 OK code: 200 duration: "" @@ -315,8 +311,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170751Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -328,11 +324,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:51 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Id-2: - - txg8526238d57d14e9d8a5f-00654e6367 + - txg53e9afe0564f4cf492a5-006568b148 X-Amz-Request-Id: - - txg8526238d57d14e9d8a5f-00654e6367 + - txg53e9afe0564f4cf492a5-006568b148 status: 200 OK code: 200 duration: "" @@ -345,8 +341,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/ + - 20231130T155904Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ method: HEAD response: body: "" @@ -354,13 +350,13 @@ interactions: Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:04 GMT X-Amz-Bucket-Region: - fr-par X-Amz-Id-2: - - txgc596659b78e64f0db22b-00654e6368 + - txg59d65e28a384462f978e-006568b148 X-Amz-Request-Id: - - txgc596659b78e64f0db22b-00654e6368 + - txg59d65e28a384462f978e-006568b148 status: 200 OK code: 200 duration: "" @@ -373,8 +369,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155905Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -386,11 +382,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:05 GMT X-Amz-Id-2: - - txg339c45fbb46147dabcec-00654e6368 + - txg11163c688ebf47d08b70-006568b149 X-Amz-Request-Id: - - txg339c45fbb46147dabcec-00654e6368 + - txg11163c688ebf47d08b70-006568b149 status: 200 OK code: 200 duration: "" @@ -403,23 +399,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?object-lock= + - 20231130T155905Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-6366892773385556584txgce53253dfa2e4218a750-00654e6368 + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-1199758219137333601txg8bcc776e0a484a32ad91-006568b149 headers: Content-Length: - "274" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:05 GMT X-Amz-Id-2: - - txgce53253dfa2e4218a750-00654e6368 + - txg8bcc776e0a484a32ad91-006568b149 X-Amz-Request-Id: - - txgce53253dfa2e4218a750-00654e6368 + - txg8bcc776e0a484a32ad91-006568b149 status: 404 Not Found code: 404 duration: "" @@ -432,24 +428,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/ + - 20231130T155905Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-63668927733855565841000false + test-acc-scaleway-object-acl-grantee-11997582191373336011000false headers: Content-Length: - "282" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:05 GMT X-Amz-Id-2: - - txg66a87c4aaa474628b184-00654e6368 + - txg3e289ad50b0f4c0aa9e9-006568b149 X-Amz-Request-Id: - - txg66a87c4aaa474628b184-00654e6368 + - txg3e289ad50b0f4c0aa9e9-006568b149 status: 200 OK code: 200 duration: "" @@ -462,22 +458,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?tagging= + - 20231130T155905Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txg9ca4f616bd2a496689b8-00654e6368 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txga988c908623f45b1945d-006568b149 headers: Content-Length: - "219" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:05 GMT X-Amz-Id-2: - - txg9ca4f616bd2a496689b8-00654e6368 + - txga988c908623f45b1945d-006568b149 X-Amz-Request-Id: - - txg9ca4f616bd2a496689b8-00654e6368 + - txga988c908623f45b1945d-006568b149 status: 404 Not Found code: 404 duration: "" @@ -490,23 +486,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?cors= + - 20231130T155905Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txgfa5e780a7f174347b7b7-00654e6368 + does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg5df2d5787cd24741becf-006568b149 headers: Content-Length: - "242" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:05 GMT X-Amz-Id-2: - - txgfa5e780a7f174347b7b7-00654e6368 + - txg5df2d5787cd24741becf-006568b149 X-Amz-Request-Id: - - txgfa5e780a7f174347b7b7-00654e6368 + - txg5df2d5787cd24741becf-006568b149 status: 404 Not Found code: 404 duration: "" @@ -519,8 +515,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?versioning= + - 20231130T155905Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- @@ -532,11 +528,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:05 GMT X-Amz-Id-2: - - txgf22e5468657b4e818b04-00654e6368 + - txg6073208f93e84b338568-006568b149 X-Amz-Request-Id: - - txgf22e5468657b4e818b04-00654e6368 + - txg6073208f93e84b338568-006568b149 status: 200 OK code: 200 duration: "" @@ -549,23 +545,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T155905Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txg8044858320894be4ba4b-00654e6368 + does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg19c4afeded2e452ead72-006568b149 headers: Content-Length: - "252" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:05 GMT X-Amz-Id-2: - - txg8044858320894be4ba4b-00654e6368 + - txg19c4afeded2e452ead72-006568b149 X-Amz-Request-Id: - - txg8044858320894be4ba4b-00654e6368 + - txg19c4afeded2e452ead72-006568b149 status: 404 Not Found code: 404 duration: "" @@ -578,8 +574,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155905Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -591,11 +587,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:05 GMT X-Amz-Id-2: - - txg0f5439026afa407887f8-00654e6368 + - txg9ee55bf3985647d9be4d-006568b149 X-Amz-Request-Id: - - txg0f5439026afa407887f8-00654e6368 + - txg9ee55bf3985647d9be4d-006568b149 status: 200 OK code: 200 duration: "" @@ -608,8 +604,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155906Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -621,11 +617,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:06 GMT X-Amz-Id-2: - - txge2952ad2683d4e9db1a4-00654e6368 + - txga992d72f9b404a958f41-006568b14a X-Amz-Request-Id: - - txge2952ad2683d4e9db1a4-00654e6368 + - txga992d72f9b404a958f41-006568b14a status: 200 OK code: 200 duration: "" @@ -638,23 +634,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170752Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?object-lock= + - 20231130T155906Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-6366892773385556584txge8ad702ad4cc4e4f929a-00654e6368 + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-1199758219137333601txgd62ff7ab55584accbbf1-006568b14a headers: Content-Length: - "274" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:52 GMT + - Thu, 30 Nov 2023 15:59:06 GMT X-Amz-Id-2: - - txge8ad702ad4cc4e4f929a-00654e6368 + - txgd62ff7ab55584accbbf1-006568b14a X-Amz-Request-Id: - - txge8ad702ad4cc4e4f929a-00654e6368 + - txgd62ff7ab55584accbbf1-006568b14a status: 404 Not Found code: 404 duration: "" @@ -667,24 +663,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/ + - 20231130T155906Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-63668927733855565841000false + test-acc-scaleway-object-acl-grantee-11997582191373336011000false headers: Content-Length: - "282" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:06 GMT X-Amz-Id-2: - - txg5adcba965df64f6d80a0-00654e6369 + - txgb2d7030cd9ef463da72e-006568b14a X-Amz-Request-Id: - - txg5adcba965df64f6d80a0-00654e6369 + - txgb2d7030cd9ef463da72e-006568b14a status: 200 OK code: 200 duration: "" @@ -697,22 +693,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?tagging= + - 20231130T155906Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txgac81327e66ce41c8afcd-00654e6369 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txga4cd2e11b08149e89555-006568b14a headers: Content-Length: - "219" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:06 GMT X-Amz-Id-2: - - txgac81327e66ce41c8afcd-00654e6369 + - txga4cd2e11b08149e89555-006568b14a X-Amz-Request-Id: - - txgac81327e66ce41c8afcd-00654e6369 + - txga4cd2e11b08149e89555-006568b14a status: 404 Not Found code: 404 duration: "" @@ -725,23 +721,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?cors= + - 20231130T155906Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txgda2295cb2b7e41c690bf-00654e6369 + does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg9cd6499649e64977acfc-006568b14a headers: Content-Length: - "242" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:06 GMT X-Amz-Id-2: - - txgda2295cb2b7e41c690bf-00654e6369 + - txg9cd6499649e64977acfc-006568b14a X-Amz-Request-Id: - - txgda2295cb2b7e41c690bf-00654e6369 + - txg9cd6499649e64977acfc-006568b14a status: 404 Not Found code: 404 duration: "" @@ -754,8 +750,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?versioning= + - 20231130T155906Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- @@ -767,11 +763,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:06 GMT X-Amz-Id-2: - - txgb724f7de40744807a3a2-00654e6369 + - txg42fd893515084009add2-006568b14a X-Amz-Request-Id: - - txgb724f7de40744807a3a2-00654e6369 + - txg42fd893515084009add2-006568b14a status: 200 OK code: 200 duration: "" @@ -784,23 +780,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T155906Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txg353c85fb1d064282b5f9-00654e6369 + does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg3bbb3caccde843d3a74a-006568b14a headers: Content-Length: - "252" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:06 GMT X-Amz-Id-2: - - txg353c85fb1d064282b5f9-00654e6369 + - txg3bbb3caccde843d3a74a-006568b14a X-Amz-Request-Id: - - txg353c85fb1d064282b5f9-00654e6369 + - txg3bbb3caccde843d3a74a-006568b14a status: 404 Not Found code: 404 duration: "" @@ -813,8 +809,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155906Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -826,46 +822,44 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:06 GMT X-Amz-Id-2: - - txg974363b1fbe94368aa89-00654e6369 + - txgb17f52de9ffd4229aba7-006568b14a X-Amz-Request-Id: - - txg974363b1fbe94368aa89-00654e6369 + - txgb17f52de9ffd4229aba7-006568b14a status: 200 OK code: 200 duration: "" - request: body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITEFULL_CONTROL50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CanonicalUser">105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59FULL_CONTROLFULL_CONTROL105bdce1-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-868455867ecf form: {} headers: Content-Length: - "1016" Content-Md5: - - 2wmIHyc5JZFYG95VSvW5jA== + - VXXTFIOgmtcz+wHoRQZq9Q== User-Agent: - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - - e51881f45dbbb8c8c9fdd9e0b17df748b36ba0f91be63fbc14b2cda3f7d686b8 + - 674b749e4d1387a89c6c00f6f19250da4e0af551e08fbd0604ccd4bf95866fef X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155907Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: PUT response: body: "" headers: Content-Length: - "0" - Content-Type: - - text/html; charset=UTF-8 Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:07 GMT X-Amz-Id-2: - - tx1fe9f421a79142a89c22e-00654e6369 + - txg1b2c5436a6a249328951-006568b14b X-Amz-Request-Id: - - tx1fe9f421a79142a89c22e-00654e6369 + - txg1b2c5436a6a249328951-006568b14b status: 200 OK code: 200 duration: "" @@ -878,8 +872,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155907Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -891,11 +885,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:07 GMT X-Amz-Id-2: - - txg864116171a474881b975-00654e6369 + - txg6af56c2dac1c4d7f85cc-006568b14b X-Amz-Request-Id: - - txg864116171a474881b975-00654e6369 + - txg6af56c2dac1c4d7f85cc-006568b14b status: 200 OK code: 200 duration: "" @@ -908,8 +902,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170753Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/ + - 20231130T155907Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ method: HEAD response: body: "" @@ -917,13 +911,13 @@ interactions: Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:53 GMT + - Thu, 30 Nov 2023 15:59:07 GMT X-Amz-Bucket-Region: - fr-par X-Amz-Id-2: - - txgeecae0a92f7b48ddbed4-00654e6369 + - txg096c33be264b4017acf7-006568b14b X-Amz-Request-Id: - - txgeecae0a92f7b48ddbed4-00654e6369 + - txg096c33be264b4017acf7-006568b14b status: 200 OK code: 200 duration: "" @@ -936,8 +930,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155907Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -949,11 +943,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:07 GMT X-Amz-Id-2: - - txg59b618190b4143e0a208-00654e636a + - txg7d7b03e212fb43d4a7de-006568b14b X-Amz-Request-Id: - - txg59b618190b4143e0a208-00654e636a + - txg7d7b03e212fb43d4a7de-006568b14b status: 200 OK code: 200 duration: "" @@ -966,23 +960,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?object-lock= + - 20231130T155907Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-6366892773385556584txg49141bef387d4dc2bd83-00654e636a + Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-1199758219137333601txg93125a0932ac4b7db4d6-006568b14b headers: Content-Length: - "274" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:07 GMT X-Amz-Id-2: - - txg49141bef387d4dc2bd83-00654e636a + - txg93125a0932ac4b7db4d6-006568b14b X-Amz-Request-Id: - - txg49141bef387d4dc2bd83-00654e636a + - txg93125a0932ac4b7db4d6-006568b14b status: 404 Not Found code: 404 duration: "" @@ -995,24 +989,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/ + - 20231130T155907Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-63668927733855565841000false + test-acc-scaleway-object-acl-grantee-11997582191373336011000false headers: Content-Length: - "282" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:07 GMT X-Amz-Id-2: - - txgdb032d0aadc54f678834-00654e636a + - txg2ff1a30452724d1f8d64-006568b14b X-Amz-Request-Id: - - txgdb032d0aadc54f678834-00654e636a + - txg2ff1a30452724d1f8d64-006568b14b status: 200 OK code: 200 duration: "" @@ -1025,22 +1019,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?tagging= + - 20231130T155908Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txgaeb63bed91d94921a5da-00654e636a + body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg87eb20fe30c843ae88bf-006568b14c headers: Content-Length: - "219" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:08 GMT X-Amz-Id-2: - - txgaeb63bed91d94921a5da-00654e636a + - txg87eb20fe30c843ae88bf-006568b14c X-Amz-Request-Id: - - txgaeb63bed91d94921a5da-00654e636a + - txg87eb20fe30c843ae88bf-006568b14c status: 404 Not Found code: 404 duration: "" @@ -1053,23 +1047,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?cors= + - 20231130T155908Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txg93264f23d094436fb698-00654e636a + does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg413f93aac38640bb8747-006568b14c headers: Content-Length: - "242" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:08 GMT X-Amz-Id-2: - - txg93264f23d094436fb698-00654e636a + - txg413f93aac38640bb8747-006568b14c X-Amz-Request-Id: - - txg93264f23d094436fb698-00654e636a + - txg413f93aac38640bb8747-006568b14c status: 404 Not Found code: 404 duration: "" @@ -1082,8 +1076,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?versioning= + - 20231130T155908Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?versioning= method: GET response: body: |- @@ -1095,11 +1089,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:08 GMT X-Amz-Id-2: - - txg761bf3263bc44abf9a76-00654e636a + - txg7c3db756d2584a17b01e-006568b14c X-Amz-Request-Id: - - txg761bf3263bc44abf9a76-00654e636a + - txg7c3db756d2584a17b01e-006568b14c status: 200 OK code: 200 duration: "" @@ -1112,23 +1106,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T155909Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-6366892773385556584txg312f987ed3f24da1a4b9-00654e636a + does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txgfe9c8007b74f4c628081-006568b14d headers: Content-Length: - "252" Content-Type: - application/xml Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:09 GMT X-Amz-Id-2: - - txg312f987ed3f24da1a4b9-00654e636a + - txgfe9c8007b74f4c628081-006568b14d X-Amz-Request-Id: - - txg312f987ed3f24da1a4b9-00654e636a + - txgfe9c8007b74f4c628081-006568b14d status: 404 Not Found code: 404 duration: "" @@ -1141,8 +1135,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155909Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -1154,11 +1148,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:09 GMT X-Amz-Id-2: - - txge2e03ea189f94e3da4d9-00654e636a + - txg9b729844027c48c6ac45-006568b14d X-Amz-Request-Id: - - txge2e03ea189f94e3da4d9-00654e636a + - txg9b729844027c48c6ac45-006568b14d status: 200 OK code: 200 duration: "" @@ -1171,8 +1165,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170754Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/?acl= + - 20231130T155910Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= method: GET response: body: |- @@ -1184,11 +1178,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Fri, 10 Nov 2023 17:07:54 GMT + - Thu, 30 Nov 2023 15:59:10 GMT X-Amz-Id-2: - - txgbc37accf77b440e6820a-00654e636a + - txg31a3148b76f94be29f4a-006568b14e X-Amz-Request-Id: - - txgbc37accf77b440e6820a-00654e636a + - txg31a3148b76f94be29f4a-006568b14e status: 200 OK code: 200 duration: "" @@ -1201,8 +1195,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231110T170755Z - url: https://test-acc-scaleway-object-acl-grantee-6366892773385556584.s3.fr-par.scw.cloud/ + - 20231130T155910Z + url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ method: DELETE response: body: "" @@ -1212,11 +1206,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Fri, 10 Nov 2023 17:07:55 GMT + - Thu, 30 Nov 2023 15:59:10 GMT X-Amz-Id-2: - - tx8909480ef7d84da5bf1ee-00654e636b + - tx42276353c4f94741bedff-006568b14e X-Amz-Request-Id: - - tx8909480ef7d84da5bf1ee-00654e636b + - tx42276353c4f94741bedff-006568b14e status: 204 No Content code: 204 duration: "" From b5d3f943fb18ee2bc03179c4efec760d159d5618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20MARABESE?= Date: Thu, 30 Nov 2023 17:05:26 +0100 Subject: [PATCH 2/4] test(object): acl: remove region attribute on the acl resource --- scaleway/resource_object_bucket_acl_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scaleway/resource_object_bucket_acl_test.go b/scaleway/resource_object_bucket_acl_test.go index eca0e6bbc..2ad39553f 100644 --- a/scaleway/resource_object_bucket_acl_test.go +++ b/scaleway/resource_object_bucket_acl_test.go @@ -28,7 +28,6 @@ func TestAccScalewayObjectBucketACL_Basic(t *testing.T) { resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name acl = "private" - region = %[2]q } `, testBucketName, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( @@ -47,7 +46,6 @@ func TestAccScalewayObjectBucketACL_Basic(t *testing.T) { resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name acl = "public-read" - region = %[2]q } `, testBucketName, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( @@ -81,7 +79,6 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name - region = %[3]q access_control_policy { grant { grantee { @@ -119,7 +116,6 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name - region = %[4]q access_control_policy { grant { grantee { @@ -184,7 +180,6 @@ func TestAccScalewayObjectBucketACL_GranteeWithOwner(t *testing.T) { resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name - region = "%[3]s" expected_bucket_owner = "%[2]s" access_control_policy { grant { From 5f135fa0e829af997878f8aee7d7d6a026fbdacc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20MARABESE?= Date: Thu, 30 Nov 2023 19:32:39 +0100 Subject: [PATCH 3/4] test(object): acl: all tests OK on nl-ams --- docs/resources/object_bucket_acl.md | 8 +- scaleway/resource_object_bucket_acl.go | 53 +- scaleway/resource_object_bucket_acl_test.go | 75 +- .../object-bucket-acl-basic.cassette.yaml | 490 +++++----- ...ucket-acl-grantee-with-owner.cassette.yaml | 268 +++--- .../object-bucket-acl-grantee.cassette.yaml | 508 +++++------ ...-bucket-acl-with-bucket-name.cassette.yaml | 860 ++++++++++++++++++ 7 files changed, 1596 insertions(+), 666 deletions(-) create mode 100644 scaleway/testdata/object-bucket-acl-with-bucket-name.cassette.yaml diff --git a/docs/resources/object_bucket_acl.md b/docs/resources/object_bucket_acl.md index dd5121ca2..7fab04079 100644 --- a/docs/resources/object_bucket_acl.md +++ b/docs/resources/object_bucket_acl.md @@ -20,7 +20,7 @@ resource "scaleway_object_bucket" "some_bucket" { } resource "scaleway_object_bucket_acl" "main" { - bucket = scaleway_object_bucket.main.name + bucket = scaleway_object_bucket.main.id acl = "private" } ``` @@ -33,7 +33,7 @@ resource "scaleway_object_bucket" "main" { } resource "scaleway_object_bucket_acl" "main" { - bucket = scaleway_object_bucket.main.name + bucket = scaleway_object_bucket.main.id access_control_policy { grant { grantee { @@ -62,12 +62,12 @@ resource "scaleway_object_bucket_acl" "main" { The following arguments are supported: -* `bucket` - (Required) The name of the bucket. +* `bucket` - (Required) The name of the bucket, or its Terraform ID. * `acl` - (Optional) The canned ACL you want to apply to the bucket. * `access_control_policy` - (Optional, Conflicts with acl) A configuration block that sets the ACL permissions for an object per grantee documented below. * `expected_bucket_owner` - (Optional, Forces new resource) The project ID of the expected bucket owner. * `region` - (Optional) The [region](https://developers.scaleway.com/en/quickstart/#region-definition) in which the bucket should be created. -* `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the project the bucket is associated with. +* `project_id` - (Defaults to [provider](../index.md#arguments-reference) `project_id`) The ID of the project the bucket is associated with. ## The ACL diff --git a/scaleway/resource_object_bucket_acl.go b/scaleway/resource_object_bucket_acl.go index 8aecbc994..82947bd1a 100644 --- a/scaleway/resource_object_bucket_acl.go +++ b/scaleway/resource_object_bucket_acl.go @@ -3,6 +3,7 @@ package scaleway import ( "context" "fmt" + "os" "strings" "time" @@ -117,11 +118,12 @@ func resourceScalewayObjectBucketACL() *schema.Resource { }, false), }, "bucket": { - Type: schema.TypeString, - Required: true, - ForceNew: true, - ValidateFunc: validation.StringLenBetween(1, 63), - Description: "The bucket name.", + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 63), + Description: "The bucket's name or regional ID.", + DiffSuppressFunc: diffSuppressFuncLocality, }, "expected_bucket_owner": { Type: schema.TypeString, @@ -142,7 +144,18 @@ func resourceBucketACLCreate(ctx context.Context, d *schema.ResourceData, meta i return diag.FromErr(err) } - bucket := expandID(d.Get("bucket").(string)) + regionalID := expandRegionalID(d.Get("bucket")) + bucket := regionalID.ID + bucketRegion := regionalID.Region + + if bucketRegion != "" && bucketRegion != region { + conn, err = s3ClientForceRegion(d, meta, bucketRegion.String()) + if err != nil { + return diag.FromErr(err) + } + region = bucketRegion + } + expectedBucketOwner := d.Get("expected_bucket_owner").(string) acl := d.Get("acl").(string) @@ -162,17 +175,25 @@ func resourceBucketACLCreate(ctx context.Context, d *schema.ResourceData, meta i input.AccessControlPolicy = expandBucketACLAccessControlPolicy(v.([]interface{})) } - out, err := retryWhenAWSErrCodeEquals(ctx, []string{s3.ErrCodeNoSuchBucket}, &RetryWhenConfig[*s3.PutBucketAclOutput]{ - Timeout: d.Timeout(schema.TimeoutCreate), - Interval: 5 * time.Second, - Function: func() (*s3.PutBucketAclOutput, error) { - return conn.PutBucketAclWithContext(ctx, input) - }, - }) - if err != nil { - return diag.FromErr(fmt.Errorf("error putting Object Storage ACL: %s", err)) + if os.Getenv("TF_ACC") == "1" { + out, err := conn.PutBucketAclWithContext(ctx, input) + if err != nil { + return diag.FromErr(fmt.Errorf("error putting Object Storage ACL: %s", err)) + } + tflog.Debug(ctx, fmt.Sprintf("output: %v", out)) + } else { + out, err := retryWhenAWSErrCodeEquals(ctx, []string{s3.ErrCodeNoSuchBucket}, &RetryWhenConfig[*s3.PutBucketAclOutput]{ + Timeout: d.Timeout(schema.TimeoutCreate), + Interval: 5 * time.Second, + Function: func() (*s3.PutBucketAclOutput, error) { + return conn.PutBucketAclWithContext(ctx, input) + }, + }) + if err != nil { + return diag.FromErr(fmt.Errorf("error putting Object Storage ACL: %s", err)) + } + tflog.Debug(ctx, fmt.Sprintf("output: %v", out)) } - tflog.Debug(ctx, fmt.Sprintf("output: %v", out)) d.SetId(BucketACLCreateResourceID(region, bucket, acl)) diff --git a/scaleway/resource_object_bucket_acl_test.go b/scaleway/resource_object_bucket_acl_test.go index 2ad39553f..547d9fa82 100644 --- a/scaleway/resource_object_bucket_acl_test.go +++ b/scaleway/resource_object_bucket_acl_test.go @@ -2,6 +2,7 @@ package scaleway import ( "fmt" + "regexp" "testing" sdkacctest "github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest" @@ -11,7 +12,7 @@ import ( func TestAccScalewayObjectBucketACL_Basic(t *testing.T) { tt := NewTestTools(t) defer tt.Cleanup() - testBucketName := sdkacctest.RandomWithPrefix("test-acc-scaleway-object-acl-basic") + testBucketName := sdkacctest.RandomWithPrefix("test-acc-scw-object-acl-basic") resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, @@ -26,12 +27,12 @@ func TestAccScalewayObjectBucketACL_Basic(t *testing.T) { } resource "scaleway_object_bucket_acl" "main" { - bucket = scaleway_object_bucket.main.name + bucket = scaleway_object_bucket.main.id acl = "private" } `, testBucketName, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), + testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.main", true), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "acl", "private"), ), @@ -44,12 +45,12 @@ func TestAccScalewayObjectBucketACL_Basic(t *testing.T) { } resource "scaleway_object_bucket_acl" "main" { - bucket = scaleway_object_bucket.main.name + bucket = scaleway_object_bucket.main.id acl = "public-read" } `, testBucketName, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), + testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.main", true), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "acl", "public-read"), ), @@ -61,7 +62,7 @@ func TestAccScalewayObjectBucketACL_Basic(t *testing.T) { func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { tt := NewTestTools(t) defer tt.Cleanup() - testBucketName := sdkacctest.RandomWithPrefix("test-acc-scaleway-object-acl-grantee") + testBucketName := sdkacctest.RandomWithPrefix("test-acc-scw-object-acl-grantee") ownerID := "105bdce1-64c0-48ab-899d-868455867ecf" ownerIDChild := "50ab77d5-56bd-4981-a118-4e0fa5309b59" @@ -78,7 +79,7 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { } resource "scaleway_object_bucket_acl" "main" { - bucket = scaleway_object_bucket.main.name + bucket = scaleway_object_bucket.main.id access_control_policy { grant { grantee { @@ -103,7 +104,7 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { } `, testBucketName, ownerID, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), + testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.main", true), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), ), }, @@ -115,7 +116,7 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { } resource "scaleway_object_bucket_acl" "main" { - bucket = scaleway_object_bucket.main.name + bucket = scaleway_object_bucket.main.id access_control_policy { grant { grantee { @@ -148,7 +149,7 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { } `, testBucketName, ownerID, ownerIDChild, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), + testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.main", true), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), ), }, @@ -164,7 +165,7 @@ func TestAccScalewayObjectBucketACL_Grantee(t *testing.T) { func TestAccScalewayObjectBucketACL_GranteeWithOwner(t *testing.T) { tt := NewTestTools(t) defer tt.Cleanup() - testBucketName := sdkacctest.RandomWithPrefix("test-acc-scaleway-object-acl-grantee-owner") + testBucketName := sdkacctest.RandomWithPrefix("test-acc-scw-object-acl-owner") ownerID := "105bdce1-64c0-48ab-899d-868455867ecf" resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, @@ -179,7 +180,7 @@ func TestAccScalewayObjectBucketACL_GranteeWithOwner(t *testing.T) { } resource "scaleway_object_bucket_acl" "main" { - bucket = scaleway_object_bucket.main.name + bucket = scaleway_object_bucket.main.id expected_bucket_owner = "%[2]s" access_control_policy { grant { @@ -205,8 +206,56 @@ func TestAccScalewayObjectBucketACL_GranteeWithOwner(t *testing.T) { } `, testBucketName, ownerID, objectTestsMainRegion), Check: resource.ComposeTestCheckFunc( - testAccCheckScalewayObjectBucketExists(tt, "scaleway_object_bucket.main"), + testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.main", true), + resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), + ), + }, + }, + }) +} + +func TestAccScalewayObjectBucketACL_WithBucketName(t *testing.T) { + tt := NewTestTools(t) + defer tt.Cleanup() + testBucketName := sdkacctest.RandomWithPrefix("test-acc-scw-object-acl-name") + + resource.Test(t, resource.TestCase{ + PreCheck: func() { testAccPreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckScalewayObjectBucketDestroy(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_object_bucket" "main" { + name = "%s" + region = "%s" + } + + resource "scaleway_object_bucket_acl" "main" { + bucket = scaleway_object_bucket.main.name + acl = "public-read" + + } + `, testBucketName, objectTestsMainRegion), + ExpectError: regexp.MustCompile("error putting Object Storage ACL: NoSuchBucket: The specified bucket does not exist"), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_object_bucket" "main" { + name = "%s" + region = "%s" + } + + resource "scaleway_object_bucket_acl" "main" { + bucket = scaleway_object_bucket.main.name + acl = "public-read" + region = "%[2]s" + } + `, testBucketName, objectTestsMainRegion), + Check: resource.ComposeTestCheckFunc( + testAccCheckScalewayObjectBucketExistsForceRegion(tt, "scaleway_object_bucket.main", true), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), + resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "acl", "public-read"), ), }, }, diff --git a/scaleway/testdata/object-bucket-acl-basic.cassette.yaml b/scaleway/testdata/object-bucket-acl-basic.cassette.yaml index 8199ee8a7..a95f2be9b 100644 --- a/scaleway/testdata/object-bucket-acl-basic.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-basic.cassette.yaml @@ -2,7 +2,7 @@ version: 1 interactions: - request: - body: fr-par + body: nl-ams form: {} headers: Content-Length: @@ -14,10 +14,10 @@ interactions: X-Amz-Bucket-Object-Lock-Enabled: - "false" X-Amz-Content-Sha256: - - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060 + - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d X-Amz-Date: - - 20231130T155857Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:58:57 GMT + - Thu, 30 Nov 2023 17:44:22 GMT Location: - - /test-acc-scaleway-object-acl-basic-6058286161930304231 + - /test-acc-scw-object-acl-basic-8191256126537855605 X-Amz-Id-2: - - txgaafabf7f695f4bb58ac9-006568b141 + - txg9f04ebf6c19d44aa9bb1-006568c9f6 X-Amz-Request-Id: - - txgaafabf7f695f4bb58ac9-006568b141 + - txg9f04ebf6c19d44aa9bb1-006568c9f6 status: 200 OK code: 200 duration: "" @@ -48,8 +48,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -57,11 +57,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:22 GMT X-Amz-Id-2: - - txg73173f0694cf42329703-006568b142 + - txgd37197fe6bea4601a872-006568c9f6 X-Amz-Request-Id: - - txg73173f0694cf42329703-006568b142 + - txgd37197fe6bea4601a872-006568c9f6 status: 200 OK code: 200 duration: "" @@ -74,8 +74,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -87,11 +87,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:22 GMT X-Amz-Id-2: - - txga6653ac2bf7948e6b8d0-006568b142 + - txg1146d4457e7f47559ed1-006568c9f6 X-Amz-Request-Id: - - txga6653ac2bf7948e6b8d0-006568b142 + - txg1146d4457e7f47559ed1-006568c9f6 status: 200 OK code: 200 duration: "" @@ -104,23 +104,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-basic-6058286161930304231txg9ad2b85e048e488cb297-006568b142 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-8191256126537855605txgff634165d9384392965e-006568c9f6 headers: Content-Length: - - "272" + - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:22 GMT X-Amz-Id-2: - - txg9ad2b85e048e488cb297-006568b142 + - txgff634165d9384392965e-006568c9f6 X-Amz-Request-Id: - - txg9ad2b85e048e488cb297-006568b142 + - txgff634165d9384392965e-006568c9f6 status: 404 Not Found code: 404 duration: "" @@ -133,24 +133,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-basic-60582861619303042311000false + test-acc-scw-object-acl-basic-81912561265378556051000false headers: Content-Length: - - "280" + - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:22 GMT X-Amz-Id-2: - - txg6658ed84b7c84791be78-006568b142 + - txg95676d52c2a249439d8b-006568c9f6 X-Amz-Request-Id: - - txg6658ed84b7c84791be78-006568b142 + - txg95676d52c2a249439d8b-006568c9f6 status: 200 OK code: 200 duration: "" @@ -163,22 +163,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?tagging= + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg9665c706b8314b5a9ea8-006568b142 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgb275cd3147b045279913-006568c9f6 headers: Content-Length: - - "217" + - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:22 GMT X-Amz-Id-2: - - txg9665c706b8314b5a9ea8-006568b142 + - txgb275cd3147b045279913-006568c9f6 X-Amz-Request-Id: - - txg9665c706b8314b5a9ea8-006568b142 + - txgb275cd3147b045279913-006568c9f6 status: 404 Not Found code: 404 duration: "" @@ -191,23 +191,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?cors= + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg6e95d7ab66f64d84bcba-006568b142 + does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg5d91f06af40245ceabca-006568c9f6 headers: Content-Length: - - "240" + - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:22 GMT X-Amz-Id-2: - - txg6e95d7ab66f64d84bcba-006568b142 + - txg5d91f06af40245ceabca-006568c9f6 X-Amz-Request-Id: - - txg6e95d7ab66f64d84bcba-006568b142 + - txg5d91f06af40245ceabca-006568c9f6 status: 404 Not Found code: 404 duration: "" @@ -220,8 +220,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?versioning= + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -233,11 +233,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:22 GMT X-Amz-Id-2: - - txg9851e1120094428389ac-006568b142 + - txg50bebddf03a84ae1b91c-006568c9f6 X-Amz-Request-Id: - - txg9851e1120094428389ac-006568b142 + - txg50bebddf03a84ae1b91c-006568c9f6 status: 200 OK code: 200 duration: "" @@ -250,23 +250,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174422Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgb19c1e63757e43d29817-006568b142 + does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg972563c3ed464cbb8fd0-006568c9f6 headers: Content-Length: - - "250" + - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:22 GMT X-Amz-Id-2: - - txgb19c1e63757e43d29817-006568b142 + - txg972563c3ed464cbb8fd0-006568c9f6 X-Amz-Request-Id: - - txgb19c1e63757e43d29817-006568b142 + - txg972563c3ed464cbb8fd0-006568c9f6 status: 404 Not Found code: 404 duration: "" @@ -283,8 +283,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -292,11 +292,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:58:58 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txgb008734a5aeb4408ad30-006568b142 + - txg9b391069535545c5acca-006568c9f7 X-Amz-Request-Id: - - txgb008734a5aeb4408ad30-006568b142 + - txg9b391069535545c5acca-006568c9f7 status: 200 OK code: 200 duration: "" @@ -309,8 +309,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155858Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -322,11 +322,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txg133227b3cdaf4762a780-006568b143 + - txga80960f5904a47ca9497-006568c9f7 X-Amz-Request-Id: - - txg133227b3cdaf4762a780-006568b143 + - txga80960f5904a47ca9497-006568c9f7 status: 200 OK code: 200 duration: "" @@ -339,8 +339,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -348,13 +348,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Bucket-Region: - - fr-par + - nl-ams X-Amz-Id-2: - - txg1db73f8d5a764b369f77-006568b143 + - txg49e61afdc72d401eb012-006568c9f7 X-Amz-Request-Id: - - txg1db73f8d5a764b369f77-006568b143 + - txg49e61afdc72d401eb012-006568c9f7 status: 200 OK code: 200 duration: "" @@ -367,8 +367,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -380,11 +380,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txg9f11d8179d274ba286a3-006568b143 + - txga5c1e46d98984f869265-006568c9f7 X-Amz-Request-Id: - - txg9f11d8179d274ba286a3-006568b143 + - txga5c1e46d98984f869265-006568c9f7 status: 200 OK code: 200 duration: "" @@ -397,23 +397,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-basic-6058286161930304231txge894162041264fb5a320-006568b143 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-8191256126537855605txg1ecdb6ef07864625ad3e-006568c9f7 headers: Content-Length: - - "272" + - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txge894162041264fb5a320-006568b143 + - txg1ecdb6ef07864625ad3e-006568c9f7 X-Amz-Request-Id: - - txge894162041264fb5a320-006568b143 + - txg1ecdb6ef07864625ad3e-006568c9f7 status: 404 Not Found code: 404 duration: "" @@ -426,24 +426,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-basic-60582861619303042311000false + test-acc-scw-object-acl-basic-81912561265378556051000false headers: Content-Length: - - "280" + - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txg4609057b090d42c895d6-006568b143 + - txg8e782448c9ab45f38c45-006568c9f7 X-Amz-Request-Id: - - txg4609057b090d42c895d6-006568b143 + - txg8e782448c9ab45f38c45-006568c9f7 status: 200 OK code: 200 duration: "" @@ -456,22 +456,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?tagging= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgd99959a6e43f4513a45d-006568b143 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg28b9cb9db9c644b08df2-006568c9f7 headers: Content-Length: - - "217" + - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txgd99959a6e43f4513a45d-006568b143 + - txg28b9cb9db9c644b08df2-006568c9f7 X-Amz-Request-Id: - - txgd99959a6e43f4513a45d-006568b143 + - txg28b9cb9db9c644b08df2-006568c9f7 status: 404 Not Found code: 404 duration: "" @@ -484,23 +484,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?cors= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg9dfb3b3d627d4c74b884-006568b143 + does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgadd461aa5f6b4346b7e7-006568c9f7 headers: Content-Length: - - "240" + - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txg9dfb3b3d627d4c74b884-006568b143 + - txgadd461aa5f6b4346b7e7-006568c9f7 X-Amz-Request-Id: - - txg9dfb3b3d627d4c74b884-006568b143 + - txgadd461aa5f6b4346b7e7-006568c9f7 status: 404 Not Found code: 404 duration: "" @@ -513,8 +513,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?versioning= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -526,11 +526,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txg85d9bafcbda74df5a2b3-006568b143 + - txgb4a6fc3411744100aa1e-006568c9f7 X-Amz-Request-Id: - - txg85d9bafcbda74df5a2b3-006568b143 + - txgb4a6fc3411744100aa1e-006568c9f7 status: 200 OK code: 200 duration: "" @@ -543,23 +543,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgd68ed085d1cf48d18060-006568b143 + does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg9727503e062d4ef69e36-006568c9f7 headers: Content-Length: - - "250" + - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txgd68ed085d1cf48d18060-006568b143 + - txg9727503e062d4ef69e36-006568c9f7 X-Amz-Request-Id: - - txgd68ed085d1cf48d18060-006568b143 + - txg9727503e062d4ef69e36-006568c9f7 status: 404 Not Found code: 404 duration: "" @@ -572,8 +572,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155859Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174423Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -585,11 +585,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:58:59 GMT + - Thu, 30 Nov 2023 17:44:23 GMT X-Amz-Id-2: - - txg6d34190b961f4d52954d-006568b143 + - txg0f334daa13e44575b576-006568c9f7 X-Amz-Request-Id: - - txg6d34190b961f4d52954d-006568b143 + - txg0f334daa13e44575b576-006568c9f7 status: 200 OK code: 200 duration: "" @@ -602,8 +602,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155900Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -615,11 +615,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:00 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txgd3b6e1258b9d4da781c2-006568b144 + - txg4c195d45aa4949df807b-006568c9f8 X-Amz-Request-Id: - - txgd3b6e1258b9d4da781c2-006568b144 + - txg4c195d45aa4949df807b-006568c9f8 status: 200 OK code: 200 duration: "" @@ -632,23 +632,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155900Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-basic-6058286161930304231txg9fbf7c90686c4ee4baa8-006568b144 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-8191256126537855605txg58b6ecfcd9af4fb9bdbc-006568c9f8 headers: Content-Length: - - "272" + - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:00 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txg9fbf7c90686c4ee4baa8-006568b144 + - txg58b6ecfcd9af4fb9bdbc-006568c9f8 X-Amz-Request-Id: - - txg9fbf7c90686c4ee4baa8-006568b144 + - txg58b6ecfcd9af4fb9bdbc-006568c9f8 status: 404 Not Found code: 404 duration: "" @@ -661,24 +661,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155900Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-basic-60582861619303042311000false + test-acc-scw-object-acl-basic-81912561265378556051000false headers: Content-Length: - - "280" + - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:00 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txg7bb28937aff04b42956a-006568b144 + - txg3763dffd6c20469db548-006568c9f8 X-Amz-Request-Id: - - txg7bb28937aff04b42956a-006568b144 + - txg3763dffd6c20469db548-006568c9f8 status: 200 OK code: 200 duration: "" @@ -691,22 +691,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155900Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?tagging= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgd768a22ff27c41e18f32-006568b144 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgbe5a1753fced4c3585e9-006568c9f8 headers: Content-Length: - - "217" + - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:00 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txgd768a22ff27c41e18f32-006568b144 + - txgbe5a1753fced4c3585e9-006568c9f8 X-Amz-Request-Id: - - txgd768a22ff27c41e18f32-006568b144 + - txgbe5a1753fced4c3585e9-006568c9f8 status: 404 Not Found code: 404 duration: "" @@ -719,23 +719,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155900Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?cors= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg5183d024e96545e3821b-006568b144 + does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgae08cbaff6c14365a83c-006568c9f8 headers: Content-Length: - - "240" + - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:00 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txg5183d024e96545e3821b-006568b144 + - txgae08cbaff6c14365a83c-006568c9f8 X-Amz-Request-Id: - - txg5183d024e96545e3821b-006568b144 + - txgae08cbaff6c14365a83c-006568c9f8 status: 404 Not Found code: 404 duration: "" @@ -748,8 +748,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155900Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?versioning= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -761,11 +761,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:00 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txg21d827ad56204dddb728-006568b144 + - txg665d6d3980ef41daa48f-006568c9f8 X-Amz-Request-Id: - - txg21d827ad56204dddb728-006568b144 + - txg665d6d3980ef41daa48f-006568c9f8 status: 200 OK code: 200 duration: "" @@ -778,23 +778,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155900Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgbf2b0248dc97435a8f88-006568b144 + does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgc8c03472ac1e4b72b6b5-006568c9f8 headers: Content-Length: - - "250" + - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:00 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txgbf2b0248dc97435a8f88-006568b144 + - txgc8c03472ac1e4b72b6b5-006568c9f8 X-Amz-Request-Id: - - txgbf2b0248dc97435a8f88-006568b144 + - txgc8c03472ac1e4b72b6b5-006568c9f8 status: 404 Not Found code: 404 duration: "" @@ -807,8 +807,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155900Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -820,11 +820,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:00 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txge6bcf1133cef486db539-006568b144 + - txgebafbbde7298428e858a-006568c9f8 X-Amz-Request-Id: - - txge6bcf1133cef486db539-006568b144 + - txgebafbbde7298428e858a-006568c9f8 status: 200 OK code: 200 duration: "" @@ -841,8 +841,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -850,11 +850,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txgfe7113b9c1564115870e-006568b145 + - txg7f1b620dba774b0cbe3e-006568c9f8 X-Amz-Request-Id: - - txgfe7113b9c1564115870e-006568b145 + - txg7f1b620dba774b0cbe3e-006568c9f8 status: 200 OK code: 200 duration: "" @@ -867,8 +867,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174424Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -880,11 +880,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:24 GMT X-Amz-Id-2: - - txg7f060373bdca4dbbb8ec-006568b145 + - txg6d88200f4b4b4b3fbfde-006568c9f8 X-Amz-Request-Id: - - txg7f060373bdca4dbbb8ec-006568b145 + - txg6d88200f4b4b4b3fbfde-006568c9f8 status: 200 OK code: 200 duration: "" @@ -897,8 +897,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -906,13 +906,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Bucket-Region: - - fr-par + - nl-ams X-Amz-Id-2: - - txg4342821751b341888ab9-006568b145 + - txgedb5e5c2c78a441eb190-006568c9f9 X-Amz-Request-Id: - - txg4342821751b341888ab9-006568b145 + - txgedb5e5c2c78a441eb190-006568c9f9 status: 200 OK code: 200 duration: "" @@ -925,8 +925,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -938,11 +938,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Id-2: - - txgaa61fb4edc1a4653883a-006568b145 + - txg06ac311853f144c99e1a-006568c9f9 X-Amz-Request-Id: - - txgaa61fb4edc1a4653883a-006568b145 + - txg06ac311853f144c99e1a-006568c9f9 status: 200 OK code: 200 duration: "" @@ -955,23 +955,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-basic-6058286161930304231txg348136f051674b198c52-006568b145 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-8191256126537855605txg22822b8580344a459d22-006568c9f9 headers: Content-Length: - - "272" + - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Id-2: - - txg348136f051674b198c52-006568b145 + - txg22822b8580344a459d22-006568c9f9 X-Amz-Request-Id: - - txg348136f051674b198c52-006568b145 + - txg22822b8580344a459d22-006568c9f9 status: 404 Not Found code: 404 duration: "" @@ -984,24 +984,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-basic-60582861619303042311000false + test-acc-scw-object-acl-basic-81912561265378556051000false headers: Content-Length: - - "280" + - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Id-2: - - txg00251117d573419ab384-006568b145 + - txg8c6389349ee7404ea433-006568c9f9 X-Amz-Request-Id: - - txg00251117d573419ab384-006568b145 + - txg8c6389349ee7404ea433-006568c9f9 status: 200 OK code: 200 duration: "" @@ -1014,22 +1014,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?tagging= + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txgf91b36bc316145078bb3-006568b145 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg9515577e3925439dab3f-006568c9f9 headers: Content-Length: - - "217" + - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Id-2: - - txgf91b36bc316145078bb3-006568b145 + - txg9515577e3925439dab3f-006568c9f9 X-Amz-Request-Id: - - txgf91b36bc316145078bb3-006568b145 + - txg9515577e3925439dab3f-006568c9f9 status: 404 Not Found code: 404 duration: "" @@ -1042,23 +1042,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?cors= + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txg163f975c3aa14640bfce-006568b145 + does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgba69b9b9424c4e3f98c8-006568c9f9 headers: Content-Length: - - "240" + - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Id-2: - - txg163f975c3aa14640bfce-006568b145 + - txgba69b9b9424c4e3f98c8-006568c9f9 X-Amz-Request-Id: - - txg163f975c3aa14640bfce-006568b145 + - txgba69b9b9424c4e3f98c8-006568c9f9 status: 404 Not Found code: 404 duration: "" @@ -1071,8 +1071,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?versioning= + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -1084,11 +1084,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Id-2: - - txgdc8e7e6f1fe54e548dbe-006568b145 + - txg45c2ca721d9841259632-006568c9f9 X-Amz-Request-Id: - - txgdc8e7e6f1fe54e548dbe-006568b145 + - txg45c2ca721d9841259632-006568c9f9 status: 200 OK code: 200 duration: "" @@ -1101,23 +1101,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-basic-6058286161930304231txge19060c7ca8344fb9166-006568b145 + does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg765ccfa233764a5fb7e3-006568c9f9 headers: Content-Length: - - "250" + - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Id-2: - - txge19060c7ca8344fb9166-006568b145 + - txg765ccfa233764a5fb7e3-006568c9f9 X-Amz-Request-Id: - - txge19060c7ca8344fb9166-006568b145 + - txg765ccfa233764a5fb7e3-006568c9f9 status: 404 Not Found code: 404 duration: "" @@ -1130,8 +1130,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155901Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/?acl= + - 20231130T174425Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -1143,11 +1143,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:01 GMT + - Thu, 30 Nov 2023 17:44:25 GMT X-Amz-Id-2: - - txgc40c3ffd6cbb412d9e5f-006568b145 + - txgfe73e349e0fc42fb90cb-006568c9f9 X-Amz-Request-Id: - - txgc40c3ffd6cbb412d9e5f-006568b145 + - txgfe73e349e0fc42fb90cb-006568c9f9 status: 200 OK code: 200 duration: "" @@ -1160,8 +1160,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155902Z - url: https://test-acc-scaleway-object-acl-basic-6058286161930304231.s3.fr-par.scw.cloud/ + - 20231130T174426Z + url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ method: DELETE response: body: "" @@ -1171,11 +1171,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 30 Nov 2023 15:59:02 GMT + - Thu, 30 Nov 2023 17:44:26 GMT X-Amz-Id-2: - - txb621b9d9be3e4214b997c-006568b146 + - tx59b2283a704a4a05a593d-006568c9fa X-Amz-Request-Id: - - txb621b9d9be3e4214b997c-006568b146 + - tx59b2283a704a4a05a593d-006568c9fa status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml b/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml index a82768d9c..7bdea5226 100644 --- a/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml @@ -2,7 +2,7 @@ version: 1 interactions: - request: - body: fr-par + body: nl-ams form: {} headers: Content-Length: @@ -14,10 +14,10 @@ interactions: X-Amz-Bucket-Object-Lock-Enabled: - "false" X-Amz-Content-Sha256: - - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060 + - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d X-Amz-Date: - - 20231130T155911Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ + - 20231130T174432Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:59:11 GMT + - Thu, 30 Nov 2023 17:44:32 GMT Location: - - /test-acc-scaleway-object-acl-grantee-owner-6010384420151799568 + - /test-acc-scw-object-acl-owner-1712104562412024281 X-Amz-Id-2: - - txg7d596590aca94ce49614-006568b14f + - txgc53dad1d85cd44d287ee-006568ca00 X-Amz-Request-Id: - - txg7d596590aca94ce49614-006568b14f + - txgc53dad1d85cd44d287ee-006568ca00 status: 200 OK code: 200 duration: "" @@ -48,8 +48,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?acl= + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -57,11 +57,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txg526a972c6f0f491cbe42-006568b150 + - txg30ca7c296e434288a317-006568ca01 X-Amz-Request-Id: - - txg526a972c6f0f491cbe42-006568b150 + - txg30ca7c296e434288a317-006568ca01 status: 200 OK code: 200 duration: "" @@ -74,8 +74,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?acl= + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -87,11 +87,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txgabb1d8662c2b4444bd70-006568b150 + - txgf093dd9c674a4388ae03-006568ca01 X-Amz-Request-Id: - - txgabb1d8662c2b4444bd70-006568b150 + - txgf093dd9c674a4388ae03-006568ca01 status: 200 OK code: 200 duration: "" @@ -104,23 +104,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txga0780ec1f6ac4817a8dd-006568b150 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-owner-1712104562412024281txgc2258ee9dce04d8e986e-006568ca01 headers: Content-Length: - - "280" + - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txga0780ec1f6ac4817a8dd-006568b150 + - txgc2258ee9dce04d8e986e-006568ca01 X-Amz-Request-Id: - - txga0780ec1f6ac4817a8dd-006568b150 + - txgc2258ee9dce04d8e986e-006568ca01 status: 404 Not Found code: 404 duration: "" @@ -133,24 +133,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-owner-60103844201517995681000false + test-acc-scw-object-acl-owner-17121045624120242811000false headers: Content-Length: - - "288" + - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txgcf6d5c2871234364bcca-006568b150 + - txg261b71689a334b55ace2-006568ca01 X-Amz-Request-Id: - - txgcf6d5c2871234364bcca-006568b150 + - txg261b71689a334b55ace2-006568ca01 status: 200 OK code: 200 duration: "" @@ -163,22 +163,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?tagging= + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txgb7d53ec7c3fb47aea223-006568b150 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-owner-1712104562412024281txg6dc565c2cf6649e4bc4f-006568ca01 headers: Content-Length: - - "225" + - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txgb7d53ec7c3fb47aea223-006568b150 + - txg6dc565c2cf6649e4bc4f-006568ca01 X-Amz-Request-Id: - - txgb7d53ec7c3fb47aea223-006568b150 + - txg6dc565c2cf6649e4bc4f-006568ca01 status: 404 Not Found code: 404 duration: "" @@ -191,23 +191,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?cors= + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txg599873135a564c76a1b7-006568b150 + does not exist/test-acc-scw-object-acl-owner-1712104562412024281txgefc6e4a1048a46eabe3f-006568ca01 headers: Content-Length: - - "248" + - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txg599873135a564c76a1b7-006568b150 + - txgefc6e4a1048a46eabe3f-006568ca01 X-Amz-Request-Id: - - txg599873135a564c76a1b7-006568b150 + - txgefc6e4a1048a46eabe3f-006568ca01 status: 404 Not Found code: 404 duration: "" @@ -220,8 +220,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?versioning= + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -233,11 +233,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txg9f4f80b2fe124d34a405-006568b150 + - txg39b62ba9a6144badb1ab-006568ca01 X-Amz-Request-Id: - - txg9f4f80b2fe124d34a405-006568b150 + - txg39b62ba9a6144badb1ab-006568ca01 status: 200 OK code: 200 duration: "" @@ -250,45 +250,45 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txg70231ef5cf9d48b9b180-006568b150 + does not exist/test-acc-scw-object-acl-owner-1712104562412024281txg0b495443690c4d85a310-006568ca01 headers: Content-Length: - - "258" + - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txg70231ef5cf9d48b9b180-006568b150 + - txg0b495443690c4d85a310-006568ca01 X-Amz-Request-Id: - - txg70231ef5cf9d48b9b180-006568b150 + - txg0b495443690c4d85a310-006568ca01 status: 404 Not Found code: 404 duration: "" - request: - body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf + body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL form: {} headers: Content-Length: - "684" Content-Md5: - - hyolSq3koUeG8L+6oSV/Yw== + - y1KP5PK0ZSCtGhOQPEIFBQ== User-Agent: - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - - 894d438eed42dfd288716d6ff6a48b6be5515e9452ed58d924757813130fdf06 + - 67b7cb52550379f804577b9952c4545b7f4d8faa7e21e6f68c096ad3ed9786bd X-Amz-Date: - - 20231130T155912Z + - 20231130T174433Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?acl= + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -296,11 +296,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txge67cb240abd1437498a8-006568b150 + - txg79a1a8eccb24435b8421-006568ca01 X-Amz-Request-Id: - - txge67cb240abd1437498a8-006568b150 + - txg79a1a8eccb24435b8421-006568ca01 status: 200 OK code: 200 duration: "" @@ -313,10 +313,10 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z + - 20231130T174433Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?acl= + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -328,11 +328,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Id-2: - - txg3b5c9a0b98b141bd9ab1-006568b150 + - txg5c4241ee4d514a019f9b-006568ca01 X-Amz-Request-Id: - - txg3b5c9a0b98b141bd9ab1-006568b150 + - txg5c4241ee4d514a019f9b-006568ca01 status: 200 OK code: 200 duration: "" @@ -345,8 +345,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155912Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ + - 20231130T174433Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -354,13 +354,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:12 GMT + - Thu, 30 Nov 2023 17:44:33 GMT X-Amz-Bucket-Region: - - fr-par + - nl-ams X-Amz-Id-2: - - txg6e1e8480f57f4eb1bc65-006568b150 + - txgb57c0e5c15504cd38c59-006568ca01 X-Amz-Request-Id: - - txg6e1e8480f57f4eb1bc65-006568b150 + - txgb57c0e5c15504cd38c59-006568ca01 status: 200 OK code: 200 duration: "" @@ -373,8 +373,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155913Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?acl= + - 20231130T174434Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -386,11 +386,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:13 GMT + - Thu, 30 Nov 2023 17:44:34 GMT X-Amz-Id-2: - - txg7aafa784d7ce4312a5b7-006568b151 + - txg195f6f3996bd4b42a1b9-006568ca02 X-Amz-Request-Id: - - txg7aafa784d7ce4312a5b7-006568b151 + - txg195f6f3996bd4b42a1b9-006568ca02 status: 200 OK code: 200 duration: "" @@ -403,23 +403,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155913Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174434Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txg515515ffbead42ee9480-006568b151 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-owner-1712104562412024281txg5fd46b6098494d8695a5-006568ca02 headers: Content-Length: - - "280" + - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:13 GMT + - Thu, 30 Nov 2023 17:44:34 GMT X-Amz-Id-2: - - txg515515ffbead42ee9480-006568b151 + - txg5fd46b6098494d8695a5-006568ca02 X-Amz-Request-Id: - - txg515515ffbead42ee9480-006568b151 + - txg5fd46b6098494d8695a5-006568ca02 status: 404 Not Found code: 404 duration: "" @@ -432,24 +432,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155913Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ + - 20231130T174434Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-owner-60103844201517995681000false + test-acc-scw-object-acl-owner-17121045624120242811000false headers: Content-Length: - - "288" + - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:13 GMT + - Thu, 30 Nov 2023 17:44:34 GMT X-Amz-Id-2: - - txg82d4c097e03140669eec-006568b151 + - txgcce3309c0b814b5588c8-006568ca02 X-Amz-Request-Id: - - txg82d4c097e03140669eec-006568b151 + - txgcce3309c0b814b5588c8-006568ca02 status: 200 OK code: 200 duration: "" @@ -462,22 +462,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155913Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?tagging= + - 20231130T174434Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txga7e0479e8ae049b0828f-006568b151 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-owner-1712104562412024281txg60c7b3ec5ec84888833b-006568ca02 headers: Content-Length: - - "225" + - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:13 GMT + - Thu, 30 Nov 2023 17:44:34 GMT X-Amz-Id-2: - - txga7e0479e8ae049b0828f-006568b151 + - txg60c7b3ec5ec84888833b-006568ca02 X-Amz-Request-Id: - - txga7e0479e8ae049b0828f-006568b151 + - txg60c7b3ec5ec84888833b-006568ca02 status: 404 Not Found code: 404 duration: "" @@ -490,23 +490,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155913Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?cors= + - 20231130T174434Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txg91104622b5004d9388a9-006568b151 + does not exist/test-acc-scw-object-acl-owner-1712104562412024281txg8eafa88b00484ea9a03e-006568ca02 headers: Content-Length: - - "248" + - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:13 GMT + - Thu, 30 Nov 2023 17:44:34 GMT X-Amz-Id-2: - - txg91104622b5004d9388a9-006568b151 + - txg8eafa88b00484ea9a03e-006568ca02 X-Amz-Request-Id: - - txg91104622b5004d9388a9-006568b151 + - txg8eafa88b00484ea9a03e-006568ca02 status: 404 Not Found code: 404 duration: "" @@ -519,8 +519,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155913Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?versioning= + - 20231130T174434Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -532,11 +532,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:13 GMT + - Thu, 30 Nov 2023 17:44:34 GMT X-Amz-Id-2: - - txg15e46d9cb8094dc0838f-006568b151 + - txg03e5d1ee5cc245e78dcd-006568ca02 X-Amz-Request-Id: - - txg15e46d9cb8094dc0838f-006568b151 + - txg03e5d1ee5cc245e78dcd-006568ca02 status: 200 OK code: 200 duration: "" @@ -549,23 +549,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155913Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174434Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-owner-6010384420151799568txgb36411e7050f4bb787c3-006568b151 + does not exist/test-acc-scw-object-acl-owner-1712104562412024281txgbeb32708dace4fcebf51-006568ca02 headers: Content-Length: - - "258" + - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:13 GMT + - Thu, 30 Nov 2023 17:44:34 GMT X-Amz-Id-2: - - txgb36411e7050f4bb787c3-006568b151 + - txgbeb32708dace4fcebf51-006568ca02 X-Amz-Request-Id: - - txgb36411e7050f4bb787c3-006568b151 + - txgbeb32708dace4fcebf51-006568ca02 status: 404 Not Found code: 404 duration: "" @@ -578,10 +578,10 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155913Z + - 20231130T174434Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/?acl= + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -593,11 +593,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:13 GMT + - Thu, 30 Nov 2023 17:44:34 GMT X-Amz-Id-2: - - txg43f53513e600447e8b8d-006568b151 + - txg6bab5cc5ab9948b3aaf0-006568ca02 X-Amz-Request-Id: - - txg43f53513e600447e8b8d-006568b151 + - txg6bab5cc5ab9948b3aaf0-006568ca02 status: 200 OK code: 200 duration: "" @@ -610,8 +610,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155914Z - url: https://test-acc-scaleway-object-acl-grantee-owner-6010384420151799568.s3.fr-par.scw.cloud/ + - 20231130T174435Z + url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ method: DELETE response: body: "" @@ -621,11 +621,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 30 Nov 2023 15:59:14 GMT + - Thu, 30 Nov 2023 17:44:35 GMT X-Amz-Id-2: - - tx9f10e002a0084b9d95f95-006568b152 + - tx4af2f659ac7f46048b72c-006568ca03 X-Amz-Request-Id: - - tx9f10e002a0084b9d95f95-006568b152 + - tx4af2f659ac7f46048b72c-006568ca03 status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml b/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml index 2be9f0d20..216f84fb2 100644 --- a/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml @@ -2,7 +2,7 @@ version: 1 interactions: - request: - body: fr-par + body: nl-ams form: {} headers: Content-Length: @@ -14,10 +14,10 @@ interactions: X-Amz-Bucket-Object-Lock-Enabled: - "false" X-Amz-Content-Sha256: - - 2cb57fad7b7168921a4c94426cfcb9ee2953f126430595df844e22d50f029060 + - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d X-Amz-Date: - - 20231130T155903Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ + - 20231130T174427Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:59:03 GMT + - Thu, 30 Nov 2023 17:44:27 GMT Location: - - /test-acc-scaleway-object-acl-grantee-1199758219137333601 + - /test-acc-scw-object-acl-grantee-7164258820218511506 X-Amz-Id-2: - - txgf0ebbcbbf0834a5cac96-006568b147 + - txge2c557536ecb4c149c75-006568c9fb X-Amz-Request-Id: - - txgf0ebbcbbf0834a5cac96-006568b147 + - txge2c557536ecb4c149c75-006568c9fb status: 200 OK code: 200 duration: "" @@ -48,8 +48,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174427Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -57,11 +57,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:27 GMT X-Amz-Id-2: - - txg49860a5ede6e4869af2a-006568b148 + - txg5182196895c1483db789-006568c9fb X-Amz-Request-Id: - - txg49860a5ede6e4869af2a-006568b148 + - txg5182196895c1483db789-006568c9fb status: 200 OK code: 200 duration: "" @@ -74,8 +74,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174427Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -87,11 +87,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:27 GMT X-Amz-Id-2: - - txgabd11bf768fb48188cc4-006568b148 + - txg0dcb36dff2af4527832e-006568c9fb X-Amz-Request-Id: - - txgabd11bf768fb48188cc4-006568b148 + - txg0dcb36dff2af4527832e-006568c9fb status: 200 OK code: 200 duration: "" @@ -104,23 +104,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174427Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-1199758219137333601txg8689b123ca8d4df6bc14-006568b148 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-7164258820218511506txg10657879ed0646c3b911-006568c9fb headers: Content-Length: - - "274" + - "269" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:27 GMT X-Amz-Id-2: - - txg8689b123ca8d4df6bc14-006568b148 + - txg10657879ed0646c3b911-006568c9fb X-Amz-Request-Id: - - txg8689b123ca8d4df6bc14-006568b148 + - txg10657879ed0646c3b911-006568c9fb status: 404 Not Found code: 404 duration: "" @@ -133,24 +133,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ + - 20231130T174427Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-11997582191373336011000false + test-acc-scw-object-acl-grantee-71642588202185115061000false headers: Content-Length: - - "282" + - "277" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:27 GMT X-Amz-Id-2: - - txg2767d629e4474c929958-006568b148 + - txg2b333609b1694d9d85de-006568c9fb X-Amz-Request-Id: - - txg2767d629e4474c929958-006568b148 + - txg2b333609b1694d9d85de-006568c9fb status: 200 OK code: 200 duration: "" @@ -163,22 +163,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?tagging= + - 20231130T174427Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg1de3b8b496b745f7a98a-006568b148 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg788048fbccb74cc1a73e-006568c9fc headers: Content-Length: - - "219" + - "214" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg1de3b8b496b745f7a98a-006568b148 + - txg788048fbccb74cc1a73e-006568c9fc X-Amz-Request-Id: - - txg1de3b8b496b745f7a98a-006568b148 + - txg788048fbccb74cc1a73e-006568c9fc status: 404 Not Found code: 404 duration: "" @@ -191,23 +191,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?cors= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg788d8fc58c214651ad33-006568b148 + does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg7930013ea8db4e278e1f-006568c9fc headers: Content-Length: - - "242" + - "237" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg788d8fc58c214651ad33-006568b148 + - txg7930013ea8db4e278e1f-006568c9fc X-Amz-Request-Id: - - txg788d8fc58c214651ad33-006568b148 + - txg7930013ea8db4e278e1f-006568c9fc status: 404 Not Found code: 404 duration: "" @@ -220,8 +220,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?versioning= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -233,11 +233,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg9ce67b0877f844e9bd2f-006568b148 + - txga6d6b9c699b34da99b74-006568c9fc X-Amz-Request-Id: - - txg9ce67b0877f844e9bd2f-006568b148 + - txga6d6b9c699b34da99b74-006568c9fc status: 200 OK code: 200 duration: "" @@ -250,23 +250,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txge2f79c9044094a1caa14-006568b148 + does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txgd6e1c6d0c88b4181b9eb-006568c9fc headers: Content-Length: - - "252" + - "247" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txge2f79c9044094a1caa14-006568b148 + - txgd6e1c6d0c88b4181b9eb-006568c9fc X-Amz-Request-Id: - - txge2f79c9044094a1caa14-006568b148 + - txgd6e1c6d0c88b4181b9eb-006568c9fc status: 404 Not Found code: 404 duration: "" @@ -285,8 +285,8 @@ interactions: X-Amz-Content-Sha256: - 40addeb28501eb9d63de75e496652fa9146db38b6a865ae9a7c52c8f57f66c53 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -294,11 +294,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg545ae474dbd54e1b9a3c-006568b148 + - txg69a6ac4328ab48d98c78-006568c9fc X-Amz-Request-Id: - - txg545ae474dbd54e1b9a3c-006568b148 + - txg69a6ac4328ab48d98c78-006568c9fc status: 200 OK code: 200 duration: "" @@ -311,8 +311,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -324,11 +324,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg53e9afe0564f4cf492a5-006568b148 + - txg9c81b29d0d344c79932c-006568c9fc X-Amz-Request-Id: - - txg53e9afe0564f4cf492a5-006568b148 + - txg9c81b29d0d344c79932c-006568c9fc status: 200 OK code: 200 duration: "" @@ -341,8 +341,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155904Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -350,13 +350,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:04 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Bucket-Region: - - fr-par + - nl-ams X-Amz-Id-2: - - txg59d65e28a384462f978e-006568b148 + - txg1c15f54153cc4a1a90fa-006568c9fc X-Amz-Request-Id: - - txg59d65e28a384462f978e-006568b148 + - txg1c15f54153cc4a1a90fa-006568c9fc status: 200 OK code: 200 duration: "" @@ -369,8 +369,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155905Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -382,11 +382,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:05 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg11163c688ebf47d08b70-006568b149 + - txg464f0f9a1bc24984b4c6-006568c9fc X-Amz-Request-Id: - - txg11163c688ebf47d08b70-006568b149 + - txg464f0f9a1bc24984b4c6-006568c9fc status: 200 OK code: 200 duration: "" @@ -399,23 +399,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155905Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-1199758219137333601txg8bcc776e0a484a32ad91-006568b149 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-7164258820218511506txgf840a55276574b7ca998-006568c9fc headers: Content-Length: - - "274" + - "269" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:05 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg8bcc776e0a484a32ad91-006568b149 + - txgf840a55276574b7ca998-006568c9fc X-Amz-Request-Id: - - txg8bcc776e0a484a32ad91-006568b149 + - txgf840a55276574b7ca998-006568c9fc status: 404 Not Found code: 404 duration: "" @@ -428,24 +428,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155905Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-11997582191373336011000false + test-acc-scw-object-acl-grantee-71642588202185115061000false headers: Content-Length: - - "282" + - "277" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:05 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg3e289ad50b0f4c0aa9e9-006568b149 + - txgc1a5a820b45149eb901f-006568c9fc X-Amz-Request-Id: - - txg3e289ad50b0f4c0aa9e9-006568b149 + - txgc1a5a820b45149eb901f-006568c9fc status: 200 OK code: 200 duration: "" @@ -458,22 +458,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155905Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?tagging= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txga988c908623f45b1945d-006568b149 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txga039467bd2f444c5bfe9-006568c9fc headers: Content-Length: - - "219" + - "214" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:05 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txga988c908623f45b1945d-006568b149 + - txga039467bd2f444c5bfe9-006568c9fc X-Amz-Request-Id: - - txga988c908623f45b1945d-006568b149 + - txga039467bd2f444c5bfe9-006568c9fc status: 404 Not Found code: 404 duration: "" @@ -486,23 +486,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155905Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?cors= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg5df2d5787cd24741becf-006568b149 + does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg1383e90a798d439e8c2b-006568c9fc headers: Content-Length: - - "242" + - "237" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:05 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg5df2d5787cd24741becf-006568b149 + - txg1383e90a798d439e8c2b-006568c9fc X-Amz-Request-Id: - - txg5df2d5787cd24741becf-006568b149 + - txg1383e90a798d439e8c2b-006568c9fc status: 404 Not Found code: 404 duration: "" @@ -515,8 +515,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155905Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?versioning= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -528,11 +528,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:05 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg6073208f93e84b338568-006568b149 + - txg8bc8bc41aeb84236a4c4-006568c9fc X-Amz-Request-Id: - - txg6073208f93e84b338568-006568b149 + - txg8bc8bc41aeb84236a4c4-006568c9fc status: 200 OK code: 200 duration: "" @@ -545,23 +545,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155905Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg19c4afeded2e452ead72-006568b149 + does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg8fc196871b284f2697b5-006568c9fc headers: Content-Length: - - "252" + - "247" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:05 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg19c4afeded2e452ead72-006568b149 + - txg8fc196871b284f2697b5-006568c9fc X-Amz-Request-Id: - - txg19c4afeded2e452ead72-006568b149 + - txg8fc196871b284f2697b5-006568c9fc status: 404 Not Found code: 404 duration: "" @@ -574,8 +574,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155905Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174428Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -587,11 +587,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:05 GMT + - Thu, 30 Nov 2023 17:44:28 GMT X-Amz-Id-2: - - txg9ee55bf3985647d9be4d-006568b149 + - txg91f625aa30a548ceba58-006568c9fc X-Amz-Request-Id: - - txg9ee55bf3985647d9be4d-006568b149 + - txg91f625aa30a548ceba58-006568c9fc status: 200 OK code: 200 duration: "" @@ -604,8 +604,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155906Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174429Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -617,11 +617,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:06 GMT + - Thu, 30 Nov 2023 17:44:29 GMT X-Amz-Id-2: - - txga992d72f9b404a958f41-006568b14a + - txg865d4c8f7175427a81d4-006568c9fd X-Amz-Request-Id: - - txga992d72f9b404a958f41-006568b14a + - txg865d4c8f7175427a81d4-006568c9fd status: 200 OK code: 200 duration: "" @@ -634,23 +634,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155906Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174429Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-1199758219137333601txgd62ff7ab55584accbbf1-006568b14a + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-7164258820218511506txgf2a7740a9ea64a089742-006568c9fd headers: Content-Length: - - "274" + - "269" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:06 GMT + - Thu, 30 Nov 2023 17:44:29 GMT X-Amz-Id-2: - - txgd62ff7ab55584accbbf1-006568b14a + - txgf2a7740a9ea64a089742-006568c9fd X-Amz-Request-Id: - - txgd62ff7ab55584accbbf1-006568b14a + - txgf2a7740a9ea64a089742-006568c9fd status: 404 Not Found code: 404 duration: "" @@ -663,24 +663,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155906Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ + - 20231130T174429Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-11997582191373336011000false + test-acc-scw-object-acl-grantee-71642588202185115061000false headers: Content-Length: - - "282" + - "277" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:06 GMT + - Thu, 30 Nov 2023 17:44:29 GMT X-Amz-Id-2: - - txgb2d7030cd9ef463da72e-006568b14a + - txg58499e9f72fb4a04a7fa-006568c9fd X-Amz-Request-Id: - - txgb2d7030cd9ef463da72e-006568b14a + - txg58499e9f72fb4a04a7fa-006568c9fd status: 200 OK code: 200 duration: "" @@ -693,22 +693,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155906Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?tagging= + - 20231130T174429Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txga4cd2e11b08149e89555-006568b14a + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txgd57af1a5ba8c45ed9212-006568c9fd headers: Content-Length: - - "219" + - "214" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:06 GMT + - Thu, 30 Nov 2023 17:44:29 GMT X-Amz-Id-2: - - txga4cd2e11b08149e89555-006568b14a + - txgd57af1a5ba8c45ed9212-006568c9fd X-Amz-Request-Id: - - txga4cd2e11b08149e89555-006568b14a + - txgd57af1a5ba8c45ed9212-006568c9fd status: 404 Not Found code: 404 duration: "" @@ -721,23 +721,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155906Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?cors= + - 20231130T174429Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg9cd6499649e64977acfc-006568b14a + does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg86058299b52346bd8c97-006568c9fd headers: Content-Length: - - "242" + - "237" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:06 GMT + - Thu, 30 Nov 2023 17:44:29 GMT X-Amz-Id-2: - - txg9cd6499649e64977acfc-006568b14a + - txg86058299b52346bd8c97-006568c9fd X-Amz-Request-Id: - - txg9cd6499649e64977acfc-006568b14a + - txg86058299b52346bd8c97-006568c9fd status: 404 Not Found code: 404 duration: "" @@ -750,8 +750,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155906Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?versioning= + - 20231130T174429Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -763,11 +763,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:06 GMT + - Thu, 30 Nov 2023 17:44:29 GMT X-Amz-Id-2: - - txg42fd893515084009add2-006568b14a + - txg42769201b59f4decabc3-006568c9fd X-Amz-Request-Id: - - txg42fd893515084009add2-006568b14a + - txg42769201b59f4decabc3-006568c9fd status: 200 OK code: 200 duration: "" @@ -780,23 +780,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155906Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174429Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg3bbb3caccde843d3a74a-006568b14a + does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txgdef948f471db4a38a17c-006568c9fd headers: Content-Length: - - "252" + - "247" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:06 GMT + - Thu, 30 Nov 2023 17:44:29 GMT X-Amz-Id-2: - - txg3bbb3caccde843d3a74a-006568b14a + - txgdef948f471db4a38a17c-006568c9fd X-Amz-Request-Id: - - txg3bbb3caccde843d3a74a-006568b14a + - txgdef948f471db4a38a17c-006568c9fd status: 404 Not Found code: 404 duration: "" @@ -809,8 +809,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155906Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174429Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -822,32 +822,32 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:06 GMT + - Thu, 30 Nov 2023 17:44:29 GMT X-Amz-Id-2: - - txgb17f52de9ffd4229aba7-006568b14a + - txge25329a755354e35835d-006568c9fd X-Amz-Request-Id: - - txgb17f52de9ffd4229aba7-006568b14a + - txge25329a755354e35835d-006568c9fd status: 200 OK code: 200 duration: "" - request: body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59FULL_CONTROLFULL_CONTROL105bdce1-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-868455867ecf + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="CanonicalUser">50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59FULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf form: {} headers: Content-Length: - "1016" Content-Md5: - - VXXTFIOgmtcz+wHoRQZq9Q== + - XDTmysPz6iilCSi58r2ijQ== User-Agent: - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - - 674b749e4d1387a89c6c00f6f19250da4e0af551e08fbd0604ccd4bf95866fef + - e34c50821643ee3e652f0d4488f9885ddb3bba7393b50498ba849c4bdb4b2cb2 X-Amz-Date: - - 20231130T155907Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174430Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -855,11 +855,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 15:59:07 GMT + - Thu, 30 Nov 2023 17:44:30 GMT X-Amz-Id-2: - - txg1b2c5436a6a249328951-006568b14b + - txgdb9d3564a6354d969911-006568c9fe X-Amz-Request-Id: - - txg1b2c5436a6a249328951-006568b14b + - txgdb9d3564a6354d969911-006568c9fe status: 200 OK code: 200 duration: "" @@ -872,8 +872,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155907Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174430Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -885,11 +885,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:07 GMT + - Thu, 30 Nov 2023 17:44:30 GMT X-Amz-Id-2: - - txg6af56c2dac1c4d7f85cc-006568b14b + - txg65693761a2434e84a81a-006568c9fe X-Amz-Request-Id: - - txg6af56c2dac1c4d7f85cc-006568b14b + - txg65693761a2434e84a81a-006568c9fe status: 200 OK code: 200 duration: "" @@ -902,8 +902,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155907Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ + - 20231130T174430Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -911,13 +911,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:07 GMT + - Thu, 30 Nov 2023 17:44:30 GMT X-Amz-Bucket-Region: - - fr-par + - nl-ams X-Amz-Id-2: - - txg096c33be264b4017acf7-006568b14b + - txg616443244d9c45eba89f-006568c9fe X-Amz-Request-Id: - - txg096c33be264b4017acf7-006568b14b + - txg616443244d9c45eba89f-006568c9fe status: 200 OK code: 200 duration: "" @@ -930,8 +930,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155907Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174430Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -943,11 +943,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:07 GMT + - Thu, 30 Nov 2023 17:44:30 GMT X-Amz-Id-2: - - txg7d7b03e212fb43d4a7de-006568b14b + - txg94a9eccf4d8e40aa8536-006568c9fe X-Amz-Request-Id: - - txg7d7b03e212fb43d4a7de-006568b14b + - txg94a9eccf4d8e40aa8536-006568c9fe status: 200 OK code: 200 duration: "" @@ -960,23 +960,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155907Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?object-lock= + - 20231130T174430Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scaleway-object-acl-grantee-1199758219137333601txg93125a0932ac4b7db4d6-006568b14b + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-7164258820218511506txgd8c6741054f04e1186b4-006568c9fe headers: Content-Length: - - "274" + - "269" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:07 GMT + - Thu, 30 Nov 2023 17:44:30 GMT X-Amz-Id-2: - - txg93125a0932ac4b7db4d6-006568b14b + - txgd8c6741054f04e1186b4-006568c9fe X-Amz-Request-Id: - - txg93125a0932ac4b7db4d6-006568b14b + - txgd8c6741054f04e1186b4-006568c9fe status: 404 Not Found code: 404 duration: "" @@ -989,24 +989,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155907Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ + - 20231130T174430Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scaleway-object-acl-grantee-11997582191373336011000false + test-acc-scw-object-acl-grantee-71642588202185115061000false headers: Content-Length: - - "282" + - "277" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:07 GMT + - Thu, 30 Nov 2023 17:44:30 GMT X-Amz-Id-2: - - txg2ff1a30452724d1f8d64-006568b14b + - txg24fa09d0d4de4157b9ef-006568c9fe X-Amz-Request-Id: - - txg2ff1a30452724d1f8d64-006568b14b + - txg24fa09d0d4de4157b9ef-006568c9fe status: 200 OK code: 200 duration: "" @@ -1019,22 +1019,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155908Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?tagging= + - 20231130T174430Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg87eb20fe30c843ae88bf-006568b14c + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg8c4e852c0439469ca296-006568c9fe headers: Content-Length: - - "219" + - "214" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:08 GMT + - Thu, 30 Nov 2023 17:44:30 GMT X-Amz-Id-2: - - txg87eb20fe30c843ae88bf-006568b14c + - txg8c4e852c0439469ca296-006568c9fe X-Amz-Request-Id: - - txg87eb20fe30c843ae88bf-006568b14c + - txg8c4e852c0439469ca296-006568c9fe status: 404 Not Found code: 404 duration: "" @@ -1047,23 +1047,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155908Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?cors= + - 20231130T174431Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txg413f93aac38640bb8747-006568b14c + does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg2b1141559d164e899d3b-006568c9ff headers: Content-Length: - - "242" + - "237" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:08 GMT + - Thu, 30 Nov 2023 17:44:31 GMT X-Amz-Id-2: - - txg413f93aac38640bb8747-006568b14c + - txg2b1141559d164e899d3b-006568c9ff X-Amz-Request-Id: - - txg413f93aac38640bb8747-006568b14c + - txg2b1141559d164e899d3b-006568c9ff status: 404 Not Found code: 404 duration: "" @@ -1076,8 +1076,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155908Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?versioning= + - 20231130T174431Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -1089,11 +1089,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:08 GMT + - Thu, 30 Nov 2023 17:44:31 GMT X-Amz-Id-2: - - txg7c3db756d2584a17b01e-006568b14c + - txg5ae1e2e9e6564d659cac-006568c9ff X-Amz-Request-Id: - - txg7c3db756d2584a17b01e-006568b14c + - txg5ae1e2e9e6564d659cac-006568c9ff status: 200 OK code: 200 duration: "" @@ -1106,23 +1106,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155909Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?lifecycle= + - 20231130T174431Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scaleway-object-acl-grantee-1199758219137333601txgfe9c8007b74f4c628081-006568b14d + does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txgeb4a89256f624a69a066-006568c9ff headers: Content-Length: - - "252" + - "247" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 15:59:09 GMT + - Thu, 30 Nov 2023 17:44:31 GMT X-Amz-Id-2: - - txgfe9c8007b74f4c628081-006568b14d + - txgeb4a89256f624a69a066-006568c9ff X-Amz-Request-Id: - - txgfe9c8007b74f4c628081-006568b14d + - txgeb4a89256f624a69a066-006568c9ff status: 404 Not Found code: 404 duration: "" @@ -1135,8 +1135,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155909Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174431Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -1148,11 +1148,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:09 GMT + - Thu, 30 Nov 2023 17:44:31 GMT X-Amz-Id-2: - - txg9b729844027c48c6ac45-006568b14d + - txg4dcb2d7dd6c04bba99b3-006568c9ff X-Amz-Request-Id: - - txg9b729844027c48c6ac45-006568b14d + - txg4dcb2d7dd6c04bba99b3-006568c9ff status: 200 OK code: 200 duration: "" @@ -1165,8 +1165,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155910Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/?acl= + - 20231130T174431Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -1178,11 +1178,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 15:59:10 GMT + - Thu, 30 Nov 2023 17:44:31 GMT X-Amz-Id-2: - - txg31a3148b76f94be29f4a-006568b14e + - txg0478f83e235e4e5ab4b2-006568c9ff X-Amz-Request-Id: - - txg31a3148b76f94be29f4a-006568b14e + - txg0478f83e235e4e5ab4b2-006568c9ff status: 200 OK code: 200 duration: "" @@ -1195,8 +1195,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T155910Z - url: https://test-acc-scaleway-object-acl-grantee-1199758219137333601.s3.fr-par.scw.cloud/ + - 20231130T174431Z + url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ method: DELETE response: body: "" @@ -1206,11 +1206,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 30 Nov 2023 15:59:10 GMT + - Thu, 30 Nov 2023 17:44:32 GMT X-Amz-Id-2: - - tx42276353c4f94741bedff-006568b14e + - tx40fc2098d6654d6eadb78-006568c9ff X-Amz-Request-Id: - - tx42276353c4f94741bedff-006568b14e + - tx40fc2098d6654d6eadb78-006568c9ff status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/object-bucket-acl-with-bucket-name.cassette.yaml b/scaleway/testdata/object-bucket-acl-with-bucket-name.cassette.yaml new file mode 100644 index 000000000..c25821d17 --- /dev/null +++ b/scaleway/testdata/object-bucket-acl-with-bucket-name.cassette.yaml @@ -0,0 +1,860 @@ +--- +version: 1 +interactions: +- request: + body: nl-ams + form: {} + headers: + Content-Length: + - "150" + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Acl: + - private + X-Amz-Bucket-Object-Lock-Enabled: + - "false" + X-Amz-Content-Sha256: + - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d + X-Amz-Date: + - 20231130T183052Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + method: PUT + response: + body: "" + headers: + Content-Length: + - "0" + Date: + - Thu, 30 Nov 2023 18:30:52 GMT + Location: + - /test-acc-scw-object-acl-name-4616058518139885197 + X-Amz-Id-2: + - txgf8ed827191c94bf7ba09-006568d4dc + X-Amz-Request-Id: + - txgf8ed827191c94bf7ba09-006568d4dc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + Content-Md5: + - 1B2M2Y8AsgTpgAmY7PhCfg== + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Acl: + - private + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183052Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + method: PUT + response: + body: "" + headers: + Content-Length: + - "0" + Date: + - Thu, 30 Nov 2023 18:30:52 GMT + X-Amz-Id-2: + - txgb82b5d0cd133495c9483-006568d4dc + X-Amz-Request-Id: + - txgb82b5d0cd133495c9483-006568d4dc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183052Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.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 + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 18:30:52 GMT + X-Amz-Id-2: + - txgc0baddcfcfc448aeb8e7-006568d4dc + X-Amz-Request-Id: + - txgc0baddcfcfc448aeb8e7-006568d4dc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183052Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?object-lock= + method: GET + response: + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4616058518139885197txg9c123c4a655942e1aee7-006568d4dc + headers: + Content-Length: + - "266" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:52 GMT + X-Amz-Id-2: + - txg9c123c4a655942e1aee7-006568d4dc + X-Amz-Request-Id: + - txg9c123c4a655942e1aee7-006568d4dc + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183052Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + method: GET + response: + body: |- + + test-acc-scw-object-acl-name-46160585181398851971000false + headers: + Content-Length: + - "274" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:52 GMT + X-Amz-Id-2: + - txga955aca046bb44e29881-006568d4dc + X-Amz-Request-Id: + - txga955aca046bb44e29881-006568d4dc + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183052Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?tagging= + method: GET + response: + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4616058518139885197txgd718d62966c748d48021-006568d4dc + headers: + Content-Length: + - "211" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:52 GMT + X-Amz-Id-2: + - txgd718d62966c748d48021-006568d4dc + X-Amz-Request-Id: + - txgd718d62966c748d48021-006568d4dc + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183052Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?cors= + method: GET + response: + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scw-object-acl-name-4616058518139885197txg6bb84143637b4d76ad59-006568d4dc + headers: + Content-Length: + - "234" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:52 GMT + X-Amz-Id-2: + - txg6bb84143637b4d76ad59-006568d4dc + X-Amz-Request-Id: + - txg6bb84143637b4d76ad59-006568d4dc + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183052Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?versioning= + method: GET + response: + body: |- + + + headers: + Content-Length: + - "138" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txgad82c928743c485d9554-006568d4dd + X-Amz-Request-Id: + - txgad82c928743c485d9554-006568d4dd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?lifecycle= + method: GET + response: + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scw-object-acl-name-4616058518139885197txg91e7108c8cde4d1a848b-006568d4dd + headers: + Content-Length: + - "244" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txg91e7108c8cde4d1a848b-006568d4dd + X-Amz-Request-Id: + - txg91e7108c8cde4d1a848b-006568d4dd + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + Content-Md5: + - 1B2M2Y8AsgTpgAmY7PhCfg== + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Acl: + - public-read + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.fr-par.scw.cloud/?acl= + method: PUT + response: + body: NoSuchBucketThe specified bucket does not exist/test-acc-scw-object-acl-name-4616058518139885197txg9cff997fb2244e29a233-006568d4dd + headers: + Content-Length: + - "221" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txg9cff997fb2244e29a233-006568d4dd + X-Amz-Request-Id: + - txg9cff997fb2244e29a233-006568d4dd + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.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 + headers: + Content-Length: + - "698" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txg214dc94ac2e24d1d88d8-006568d4dd + X-Amz-Request-Id: + - txg214dc94ac2e24d1d88d8-006568d4dd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?object-lock= + method: GET + response: + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4616058518139885197txg87e195dc30294a129a18-006568d4dd + headers: + Content-Length: + - "266" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txg87e195dc30294a129a18-006568d4dd + X-Amz-Request-Id: + - txg87e195dc30294a129a18-006568d4dd + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + method: GET + response: + body: |- + + test-acc-scw-object-acl-name-46160585181398851971000false + headers: + Content-Length: + - "274" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txge70ebd37d4174388a858-006568d4dd + X-Amz-Request-Id: + - txge70ebd37d4174388a858-006568d4dd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?tagging= + method: GET + response: + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4616058518139885197txgefa2ddadbed44056bda5-006568d4dd + headers: + Content-Length: + - "211" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txgefa2ddadbed44056bda5-006568d4dd + X-Amz-Request-Id: + - txgefa2ddadbed44056bda5-006568d4dd + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?cors= + method: GET + response: + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scw-object-acl-name-4616058518139885197txgd2a76867207f4ceeae18-006568d4dd + headers: + Content-Length: + - "234" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txgd2a76867207f4ceeae18-006568d4dd + X-Amz-Request-Id: + - txgd2a76867207f4ceeae18-006568d4dd + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?versioning= + method: GET + response: + body: |- + + + headers: + Content-Length: + - "138" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txgba6ae164b6064dc7b770-006568d4dd + X-Amz-Request-Id: + - txgba6ae164b6064dc7b770-006568d4dd + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183053Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?lifecycle= + method: GET + response: + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scw-object-acl-name-4616058518139885197txg4650ddc82bc44304a019-006568d4dd + headers: + Content-Length: + - "244" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:53 GMT + X-Amz-Id-2: + - txg4650ddc82bc44304a019-006568d4dd + X-Amz-Request-Id: + - txg4650ddc82bc44304a019-006568d4dd + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + Content-Md5: + - 1B2M2Y8AsgTpgAmY7PhCfg== + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Acl: + - public-read + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183054Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + method: PUT + response: + body: "" + headers: + Content-Length: + - "0" + Date: + - Thu, 30 Nov 2023 18:30:54 GMT + X-Amz-Id-2: + - txg0f1a39129bdd411d9388-006568d4de + X-Amz-Request-Id: + - txg0f1a39129bdd411d9388-006568d4de + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183054Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.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_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD + headers: + Content-Length: + - "890" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 18:30:54 GMT + X-Amz-Id-2: + - txg84616fc802f647b8899a-006568d4de + X-Amz-Request-Id: + - txg84616fc802f647b8899a-006568d4de + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183054Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + method: HEAD + response: + body: "" + headers: + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:54 GMT + X-Amz-Bucket-Region: + - nl-ams + X-Amz-Id-2: + - txg1bd1aef25eb642cbb46b-006568d4de + X-Amz-Request-Id: + - txg1bd1aef25eb642cbb46b-006568d4de + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183054Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.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_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD + headers: + Content-Length: + - "890" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 18:30:54 GMT + X-Amz-Id-2: + - txg68375d8406dc4f3f975b-006568d4de + X-Amz-Request-Id: + - txg68375d8406dc4f3f975b-006568d4de + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183055Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?object-lock= + method: GET + response: + body: ObjectLockConfigurationNotFoundErrorObject + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4616058518139885197txge5f9171f1c6743a89a55-006568d4df + headers: + Content-Length: + - "266" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:55 GMT + X-Amz-Id-2: + - txge5f9171f1c6743a89a55-006568d4df + X-Amz-Request-Id: + - txge5f9171f1c6743a89a55-006568d4df + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183055Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + method: GET + response: + body: |- + + test-acc-scw-object-acl-name-46160585181398851971000false + headers: + Content-Length: + - "274" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:55 GMT + X-Amz-Id-2: + - txgde06801dadbb42f5b421-006568d4df + X-Amz-Request-Id: + - txgde06801dadbb42f5b421-006568d4df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183055Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?tagging= + method: GET + response: + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4616058518139885197txg527f6a9f2fc043a8ba8d-006568d4df + headers: + Content-Length: + - "211" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:55 GMT + X-Amz-Id-2: + - txg527f6a9f2fc043a8ba8d-006568d4df + X-Amz-Request-Id: + - txg527f6a9f2fc043a8ba8d-006568d4df + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183055Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?cors= + method: GET + response: + body: NoSuchCORSConfigurationThe CORS configuration + does not exist/test-acc-scw-object-acl-name-4616058518139885197txgec720e4a27e04581948c-006568d4df + headers: + Content-Length: + - "234" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:55 GMT + X-Amz-Id-2: + - txgec720e4a27e04581948c-006568d4df + X-Amz-Request-Id: + - txgec720e4a27e04581948c-006568d4df + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183055Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?versioning= + method: GET + response: + body: |- + + + headers: + Content-Length: + - "138" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 18:30:55 GMT + X-Amz-Id-2: + - txg9b1f9b2d6e3c442181fb-006568d4df + X-Amz-Request-Id: + - txg9b1f9b2d6e3c442181fb-006568d4df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183055Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?lifecycle= + method: GET + response: + body: NoSuchLifecycleConfigurationThe lifecycle configuration + does not exist/test-acc-scw-object-acl-name-4616058518139885197txg0271c8506b2a4786a4a2-006568d4df + headers: + Content-Length: + - "244" + Content-Type: + - application/xml + Date: + - Thu, 30 Nov 2023 18:30:55 GMT + X-Amz-Id-2: + - txg0271c8506b2a4786a4a2-006568d4df + X-Amz-Request-Id: + - txg0271c8506b2a4786a4a2-006568d4df + status: 404 Not Found + code: 404 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183055Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.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_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD + headers: + Content-Length: + - "890" + Content-Type: + - text/xml; charset=utf-8 + Date: + - Thu, 30 Nov 2023 18:30:55 GMT + X-Amz-Id-2: + - txg5d4ecd73b1a248848aeb-006568d4df + X-Amz-Request-Id: + - txg5d4ecd73b1a248848aeb-006568d4df + status: 200 OK + code: 200 + duration: "" +- request: + body: "" + form: {} + headers: + User-Agent: + - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) + X-Amz-Content-Sha256: + - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + X-Amz-Date: + - 20231130T183055Z + url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + method: DELETE + response: + body: "" + headers: + Content-Length: + - "0" + Content-Type: + - text/html; charset=UTF-8 + Date: + - Thu, 30 Nov 2023 18:30:56 GMT + X-Amz-Id-2: + - txb314fb4539874aa2b2477-006568d4df + X-Amz-Request-Id: + - txb314fb4539874aa2b2477-006568d4df + status: 204 No Content + code: 204 + duration: "" From 31a6bedd35b57bbe9f5bd660725315dc93964b68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20MARABESE?= Date: Tue, 5 Dec 2023 17:43:50 +0100 Subject: [PATCH 4/4] test(object): acl: remove retry --- scaleway/resource_object_bucket_acl.go | 24 +- .../object-bucket-acl-basic.cassette.yaml | 442 ++++++++--------- ...ucket-acl-grantee-with-owner.cassette.yaml | 242 +++++----- .../object-bucket-acl-grantee.cassette.yaml | 452 +++++++++--------- ...-bucket-acl-with-bucket-name.cassette.yaml | 324 ++++++------- 5 files changed, 734 insertions(+), 750 deletions(-) diff --git a/scaleway/resource_object_bucket_acl.go b/scaleway/resource_object_bucket_acl.go index 82947bd1a..adecd173e 100644 --- a/scaleway/resource_object_bucket_acl.go +++ b/scaleway/resource_object_bucket_acl.go @@ -3,9 +3,7 @@ package scaleway import ( "context" "fmt" - "os" "strings" - "time" "github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/service/s3" @@ -175,25 +173,11 @@ func resourceBucketACLCreate(ctx context.Context, d *schema.ResourceData, meta i input.AccessControlPolicy = expandBucketACLAccessControlPolicy(v.([]interface{})) } - if os.Getenv("TF_ACC") == "1" { - out, err := conn.PutBucketAclWithContext(ctx, input) - if err != nil { - return diag.FromErr(fmt.Errorf("error putting Object Storage ACL: %s", err)) - } - tflog.Debug(ctx, fmt.Sprintf("output: %v", out)) - } else { - out, err := retryWhenAWSErrCodeEquals(ctx, []string{s3.ErrCodeNoSuchBucket}, &RetryWhenConfig[*s3.PutBucketAclOutput]{ - Timeout: d.Timeout(schema.TimeoutCreate), - Interval: 5 * time.Second, - Function: func() (*s3.PutBucketAclOutput, error) { - return conn.PutBucketAclWithContext(ctx, input) - }, - }) - if err != nil { - return diag.FromErr(fmt.Errorf("error putting Object Storage ACL: %s", err)) - } - tflog.Debug(ctx, fmt.Sprintf("output: %v", out)) + out, err := conn.PutBucketAclWithContext(ctx, input) + if err != nil { + return diag.FromErr(fmt.Errorf("error putting Object Storage ACL: %s", err)) } + tflog.Debug(ctx, fmt.Sprintf("output: %v", out)) d.SetId(BucketACLCreateResourceID(region, bucket, acl)) diff --git a/scaleway/testdata/object-bucket-acl-basic.cassette.yaml b/scaleway/testdata/object-bucket-acl-basic.cassette.yaml index a95f2be9b..848a49087 100644 --- a/scaleway/testdata/object-bucket-acl-basic.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-basic.cassette.yaml @@ -16,8 +16,8 @@ interactions: X-Amz-Content-Sha256: - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ + - 20231205T165936Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:36 GMT Location: - - /test-acc-scw-object-acl-basic-8191256126537855605 + - /test-acc-scw-object-acl-basic-4247729701451286410 X-Amz-Id-2: - - txg9f04ebf6c19d44aa9bb1-006568c9f6 + - txg40236538a9474b3bafb8-00656f56f8 X-Amz-Request-Id: - - txg9f04ebf6c19d44aa9bb1-006568c9f6 + - txg40236538a9474b3bafb8-00656f56f8 status: 200 OK code: 200 duration: "" @@ -48,8 +48,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165936Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -57,11 +57,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:36 GMT X-Amz-Id-2: - - txgd37197fe6bea4601a872-006568c9f6 + - txg70ad3853ef254d17a72a-00656f56f8 X-Amz-Request-Id: - - txgd37197fe6bea4601a872-006568c9f6 + - txg70ad3853ef254d17a72a-00656f56f8 status: 200 OK code: 200 duration: "" @@ -74,8 +74,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165936Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -87,11 +87,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:36 GMT X-Amz-Id-2: - - txg1146d4457e7f47559ed1-006568c9f6 + - txg430194b69aff49e49b29-00656f56f8 X-Amz-Request-Id: - - txg1146d4457e7f47559ed1-006568c9f6 + - txg430194b69aff49e49b29-00656f56f8 status: 200 OK code: 200 duration: "" @@ -104,23 +104,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165936Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-8191256126537855605txgff634165d9384392965e-006568c9f6 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-4247729701451286410txg531da0ad62ae43a5b81f-00656f56f8 headers: Content-Length: - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:36 GMT X-Amz-Id-2: - - txgff634165d9384392965e-006568c9f6 + - txg531da0ad62ae43a5b81f-00656f56f8 X-Amz-Request-Id: - - txgff634165d9384392965e-006568c9f6 + - txg531da0ad62ae43a5b81f-00656f56f8 status: 404 Not Found code: 404 duration: "" @@ -133,24 +133,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ + - 20231205T165936Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-basic-81912561265378556051000false + test-acc-scw-object-acl-basic-42477297014512864101000false headers: Content-Length: - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:36 GMT X-Amz-Id-2: - - txg95676d52c2a249439d8b-006568c9f6 + - txg81d7381711eb4eaba1e2-00656f56f8 X-Amz-Request-Id: - - txg95676d52c2a249439d8b-006568c9f6 + - txg81d7381711eb4eaba1e2-00656f56f8 status: 200 OK code: 200 duration: "" @@ -163,22 +163,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgb275cd3147b045279913-006568c9f6 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-4247729701451286410txg71ebe443763642d5b3d6-00656f56f9 headers: Content-Length: - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txgb275cd3147b045279913-006568c9f6 + - txg71ebe443763642d5b3d6-00656f56f9 X-Amz-Request-Id: - - txgb275cd3147b045279913-006568c9f6 + - txg71ebe443763642d5b3d6-00656f56f9 status: 404 Not Found code: 404 duration: "" @@ -191,23 +191,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?cors= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg5d91f06af40245ceabca-006568c9f6 + does not exist/test-acc-scw-object-acl-basic-4247729701451286410txgabba30bf247c409ebd73-00656f56f9 headers: Content-Length: - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txg5d91f06af40245ceabca-006568c9f6 + - txgabba30bf247c409ebd73-00656f56f9 X-Amz-Request-Id: - - txg5d91f06af40245ceabca-006568c9f6 + - txgabba30bf247c409ebd73-00656f56f9 status: 404 Not Found code: 404 duration: "" @@ -220,8 +220,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -233,11 +233,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txg50bebddf03a84ae1b91c-006568c9f6 + - txg531dc8048a2a4d5696ff-00656f56f9 X-Amz-Request-Id: - - txg50bebddf03a84ae1b91c-006568c9f6 + - txg531dc8048a2a4d5696ff-00656f56f9 status: 200 OK code: 200 duration: "" @@ -250,23 +250,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174422Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg972563c3ed464cbb8fd0-006568c9f6 + does not exist/test-acc-scw-object-acl-basic-4247729701451286410txgda013ef43dab4229a0c4-00656f56f9 headers: Content-Length: - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:22 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txg972563c3ed464cbb8fd0-006568c9f6 + - txgda013ef43dab4229a0c4-00656f56f9 X-Amz-Request-Id: - - txg972563c3ed464cbb8fd0-006568c9f6 + - txgda013ef43dab4229a0c4-00656f56f9 status: 404 Not Found code: 404 duration: "" @@ -283,8 +283,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -292,11 +292,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txg9b391069535545c5acca-006568c9f7 + - txgcdd1c0c99b9c4e959584-00656f56f9 X-Amz-Request-Id: - - txg9b391069535545c5acca-006568c9f7 + - txgcdd1c0c99b9c4e959584-00656f56f9 status: 200 OK code: 200 duration: "" @@ -309,8 +309,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -322,11 +322,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txga80960f5904a47ca9497-006568c9f7 + - txgfb3ef012f1e74975863a-00656f56f9 X-Amz-Request-Id: - - txga80960f5904a47ca9497-006568c9f7 + - txgfb3ef012f1e74975863a-00656f56f9 status: 200 OK code: 200 duration: "" @@ -339,8 +339,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -348,13 +348,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg49e61afdc72d401eb012-006568c9f7 + - txg60a295a053c9426a993d-00656f56f9 X-Amz-Request-Id: - - txg49e61afdc72d401eb012-006568c9f7 + - txg60a295a053c9426a993d-00656f56f9 status: 200 OK code: 200 duration: "" @@ -367,8 +367,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -380,11 +380,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txga5c1e46d98984f869265-006568c9f7 + - txg3be5a7b662b646609e57-00656f56f9 X-Amz-Request-Id: - - txga5c1e46d98984f869265-006568c9f7 + - txg3be5a7b662b646609e57-00656f56f9 status: 200 OK code: 200 duration: "" @@ -397,23 +397,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-8191256126537855605txg1ecdb6ef07864625ad3e-006568c9f7 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-4247729701451286410txg7ce1a1c6deea4cd4a595-00656f56f9 headers: Content-Length: - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txg1ecdb6ef07864625ad3e-006568c9f7 + - txg7ce1a1c6deea4cd4a595-00656f56f9 X-Amz-Request-Id: - - txg1ecdb6ef07864625ad3e-006568c9f7 + - txg7ce1a1c6deea4cd4a595-00656f56f9 status: 404 Not Found code: 404 duration: "" @@ -426,24 +426,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-basic-81912561265378556051000false + test-acc-scw-object-acl-basic-42477297014512864101000false headers: Content-Length: - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txg8e782448c9ab45f38c45-006568c9f7 + - txg237f279e98334511b959-00656f56f9 X-Amz-Request-Id: - - txg8e782448c9ab45f38c45-006568c9f7 + - txg237f279e98334511b959-00656f56f9 status: 200 OK code: 200 duration: "" @@ -456,22 +456,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg28b9cb9db9c644b08df2-006568c9f7 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-4247729701451286410txga34022f1fc07477990c5-00656f56f9 headers: Content-Length: - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txg28b9cb9db9c644b08df2-006568c9f7 + - txga34022f1fc07477990c5-00656f56f9 X-Amz-Request-Id: - - txg28b9cb9db9c644b08df2-006568c9f7 + - txga34022f1fc07477990c5-00656f56f9 status: 404 Not Found code: 404 duration: "" @@ -484,23 +484,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?cors= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgadd461aa5f6b4346b7e7-006568c9f7 + does not exist/test-acc-scw-object-acl-basic-4247729701451286410txg3006b96142f445d19eb9-00656f56f9 headers: Content-Length: - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txgadd461aa5f6b4346b7e7-006568c9f7 + - txg3006b96142f445d19eb9-00656f56f9 X-Amz-Request-Id: - - txgadd461aa5f6b4346b7e7-006568c9f7 + - txg3006b96142f445d19eb9-00656f56f9 status: 404 Not Found code: 404 duration: "" @@ -513,8 +513,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165937Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -526,11 +526,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:37 GMT X-Amz-Id-2: - - txgb4a6fc3411744100aa1e-006568c9f7 + - txg08369605d98a436c9fd3-00656f56f9 X-Amz-Request-Id: - - txgb4a6fc3411744100aa1e-006568c9f7 + - txg08369605d98a436c9fd3-00656f56f9 status: 200 OK code: 200 duration: "" @@ -543,23 +543,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg9727503e062d4ef69e36-006568c9f7 + does not exist/test-acc-scw-object-acl-basic-4247729701451286410txga0309d74f9a942ad8c0a-00656f56fa headers: Content-Length: - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txg9727503e062d4ef69e36-006568c9f7 + - txga0309d74f9a942ad8c0a-00656f56fa X-Amz-Request-Id: - - txg9727503e062d4ef69e36-006568c9f7 + - txga0309d74f9a942ad8c0a-00656f56fa status: 404 Not Found code: 404 duration: "" @@ -572,8 +572,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174423Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -585,11 +585,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:23 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txg0f334daa13e44575b576-006568c9f7 + - txgc33a098fa8e943ab805b-00656f56fa X-Amz-Request-Id: - - txg0f334daa13e44575b576-006568c9f7 + - txgc33a098fa8e943ab805b-00656f56fa status: 200 OK code: 200 duration: "" @@ -602,8 +602,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -615,11 +615,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txg4c195d45aa4949df807b-006568c9f8 + - txg11f1a8512c774161a4fd-00656f56fa X-Amz-Request-Id: - - txg4c195d45aa4949df807b-006568c9f8 + - txg11f1a8512c774161a4fd-00656f56fa status: 200 OK code: 200 duration: "" @@ -632,23 +632,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-8191256126537855605txg58b6ecfcd9af4fb9bdbc-006568c9f8 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-4247729701451286410txg05aff12b0132449297b4-00656f56fa headers: Content-Length: - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txg58b6ecfcd9af4fb9bdbc-006568c9f8 + - txg05aff12b0132449297b4-00656f56fa X-Amz-Request-Id: - - txg58b6ecfcd9af4fb9bdbc-006568c9f8 + - txg05aff12b0132449297b4-00656f56fa status: 404 Not Found code: 404 duration: "" @@ -661,24 +661,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-basic-81912561265378556051000false + test-acc-scw-object-acl-basic-42477297014512864101000false headers: Content-Length: - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txg3763dffd6c20469db548-006568c9f8 + - txgfbd720ca86cd4396a18c-00656f56fa X-Amz-Request-Id: - - txg3763dffd6c20469db548-006568c9f8 + - txgfbd720ca86cd4396a18c-00656f56fa status: 200 OK code: 200 duration: "" @@ -691,22 +691,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgbe5a1753fced4c3585e9-006568c9f8 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-4247729701451286410txg28749f750e7b4a5f84d3-00656f56fa headers: Content-Length: - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txgbe5a1753fced4c3585e9-006568c9f8 + - txg28749f750e7b4a5f84d3-00656f56fa X-Amz-Request-Id: - - txgbe5a1753fced4c3585e9-006568c9f8 + - txg28749f750e7b4a5f84d3-00656f56fa status: 404 Not Found code: 404 duration: "" @@ -719,23 +719,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?cors= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgae08cbaff6c14365a83c-006568c9f8 + does not exist/test-acc-scw-object-acl-basic-4247729701451286410txge7c29a26dab141d889e9-00656f56fa headers: Content-Length: - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txgae08cbaff6c14365a83c-006568c9f8 + - txge7c29a26dab141d889e9-00656f56fa X-Amz-Request-Id: - - txgae08cbaff6c14365a83c-006568c9f8 + - txge7c29a26dab141d889e9-00656f56fa status: 404 Not Found code: 404 duration: "" @@ -748,8 +748,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -761,11 +761,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txg665d6d3980ef41daa48f-006568c9f8 + - txg397af997e45e47faad62-00656f56fa X-Amz-Request-Id: - - txg665d6d3980ef41daa48f-006568c9f8 + - txg397af997e45e47faad62-00656f56fa status: 200 OK code: 200 duration: "" @@ -778,23 +778,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgc8c03472ac1e4b72b6b5-006568c9f8 + does not exist/test-acc-scw-object-acl-basic-4247729701451286410txg1c79353ffaef470d9e4a-00656f56fa headers: Content-Length: - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txgc8c03472ac1e4b72b6b5-006568c9f8 + - txg1c79353ffaef470d9e4a-00656f56fa X-Amz-Request-Id: - - txgc8c03472ac1e4b72b6b5-006568c9f8 + - txg1c79353ffaef470d9e4a-00656f56fa status: 404 Not Found code: 404 duration: "" @@ -807,8 +807,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165938Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -820,11 +820,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:38 GMT X-Amz-Id-2: - - txgebafbbde7298428e858a-006568c9f8 + - txgf2a04de9b4524694afaf-00656f56fa X-Amz-Request-Id: - - txgebafbbde7298428e858a-006568c9f8 + - txgf2a04de9b4524694afaf-00656f56fa status: 200 OK code: 200 duration: "" @@ -841,8 +841,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -850,11 +850,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txg7f1b620dba774b0cbe3e-006568c9f8 + - txg391c6c990d444a65ad79-00656f56fb X-Amz-Request-Id: - - txg7f1b620dba774b0cbe3e-006568c9f8 + - txg391c6c990d444a65ad79-00656f56fb status: 200 OK code: 200 duration: "" @@ -867,8 +867,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174424Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -880,11 +880,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:24 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txg6d88200f4b4b4b3fbfde-006568c9f8 + - txg0278b7c19f704032ac23-00656f56fb X-Amz-Request-Id: - - txg6d88200f4b4b4b3fbfde-006568c9f8 + - txg0278b7c19f704032ac23-00656f56fb status: 200 OK code: 200 duration: "" @@ -897,8 +897,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -906,13 +906,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txgedb5e5c2c78a441eb190-006568c9f9 + - txg104f634038fe4286b1e7-00656f56fb X-Amz-Request-Id: - - txgedb5e5c2c78a441eb190-006568c9f9 + - txg104f634038fe4286b1e7-00656f56fb status: 200 OK code: 200 duration: "" @@ -925,8 +925,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -938,11 +938,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txg06ac311853f144c99e1a-006568c9f9 + - txgf13fba0ad1d4493fa518-00656f56fb X-Amz-Request-Id: - - txg06ac311853f144c99e1a-006568c9f9 + - txgf13fba0ad1d4493fa518-00656f56fb status: 200 OK code: 200 duration: "" @@ -955,23 +955,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-8191256126537855605txg22822b8580344a459d22-006568c9f9 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-basic-4247729701451286410txg6280966ddf0c4ac0b43a-00656f56fb headers: Content-Length: - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txg22822b8580344a459d22-006568c9f9 + - txg6280966ddf0c4ac0b43a-00656f56fb X-Amz-Request-Id: - - txg22822b8580344a459d22-006568c9f9 + - txg6280966ddf0c4ac0b43a-00656f56fb status: 404 Not Found code: 404 duration: "" @@ -984,24 +984,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-basic-81912561265378556051000false + test-acc-scw-object-acl-basic-42477297014512864101000false headers: Content-Length: - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txg8c6389349ee7404ea433-006568c9f9 + - txg318a508d111649378749-00656f56fb X-Amz-Request-Id: - - txg8c6389349ee7404ea433-006568c9f9 + - txg318a508d111649378749-00656f56fb status: 200 OK code: 200 duration: "" @@ -1014,22 +1014,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg9515577e3925439dab3f-006568c9f9 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-basic-4247729701451286410txgf74e438b039645ae9842-00656f56fb headers: Content-Length: - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txg9515577e3925439dab3f-006568c9f9 + - txgf74e438b039645ae9842-00656f56fb X-Amz-Request-Id: - - txg9515577e3925439dab3f-006568c9f9 + - txgf74e438b039645ae9842-00656f56fb status: 404 Not Found code: 404 duration: "" @@ -1042,23 +1042,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?cors= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-basic-8191256126537855605txgba69b9b9424c4e3f98c8-006568c9f9 + does not exist/test-acc-scw-object-acl-basic-4247729701451286410txg18e6247ec8af4bf3b9a0-00656f56fb headers: Content-Length: - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txgba69b9b9424c4e3f98c8-006568c9f9 + - txg18e6247ec8af4bf3b9a0-00656f56fb X-Amz-Request-Id: - - txgba69b9b9424c4e3f98c8-006568c9f9 + - txg18e6247ec8af4bf3b9a0-00656f56fb status: 404 Not Found code: 404 duration: "" @@ -1071,8 +1071,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -1084,11 +1084,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txg45c2ca721d9841259632-006568c9f9 + - txgf4e2723089a94423beb9-00656f56fb X-Amz-Request-Id: - - txg45c2ca721d9841259632-006568c9f9 + - txgf4e2723089a94423beb9-00656f56fb status: 200 OK code: 200 duration: "" @@ -1101,23 +1101,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-basic-8191256126537855605txg765ccfa233764a5fb7e3-006568c9f9 + does not exist/test-acc-scw-object-acl-basic-4247729701451286410txga2cbabd87d994f1f96ca-00656f56fb headers: Content-Length: - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txg765ccfa233764a5fb7e3-006568c9f9 + - txga2cbabd87d994f1f96ca-00656f56fb X-Amz-Request-Id: - - txg765ccfa233764a5fb7e3-006568c9f9 + - txga2cbabd87d994f1f96ca-00656f56fb status: 404 Not Found code: 404 duration: "" @@ -1130,8 +1130,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174425Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/?acl= + - 20231205T165939Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -1143,11 +1143,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:25 GMT + - Tue, 05 Dec 2023 16:59:39 GMT X-Amz-Id-2: - - txgfe73e349e0fc42fb90cb-006568c9f9 + - txgfcbba59081f64c2aa66b-00656f56fb X-Amz-Request-Id: - - txgfe73e349e0fc42fb90cb-006568c9f9 + - txgfcbba59081f64c2aa66b-00656f56fb status: 200 OK code: 200 duration: "" @@ -1160,8 +1160,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174426Z - url: https://test-acc-scw-object-acl-basic-8191256126537855605.s3.nl-ams.scw.cloud/ + - 20231205T165940Z + url: https://test-acc-scw-object-acl-basic-4247729701451286410.s3.nl-ams.scw.cloud/ method: DELETE response: body: "" @@ -1171,11 +1171,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 30 Nov 2023 17:44:26 GMT + - Tue, 05 Dec 2023 16:59:40 GMT X-Amz-Id-2: - - tx59b2283a704a4a05a593d-006568c9fa + - txef08b8f1dd7e423e809bd-00656f56fc X-Amz-Request-Id: - - tx59b2283a704a4a05a593d-006568c9fa + - txef08b8f1dd7e423e809bd-00656f56fc status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml b/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml index 7bdea5226..11caa0570 100644 --- a/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml @@ -16,8 +16,8 @@ interactions: X-Amz-Content-Sha256: - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d X-Amz-Date: - - 20231130T174432Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ + - 20231205T165947Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:32 GMT + - Tue, 05 Dec 2023 16:59:47 GMT Location: - - /test-acc-scw-object-acl-owner-1712104562412024281 + - /test-acc-scw-object-acl-owner-3712067177167610896 X-Amz-Id-2: - - txgc53dad1d85cd44d287ee-006568ca00 + - txg9c275ebae992476bbee1-00656f5703 X-Amz-Request-Id: - - txgc53dad1d85cd44d287ee-006568ca00 + - txg9c275ebae992476bbee1-00656f5703 status: 200 OK code: 200 duration: "" @@ -48,8 +48,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= + - 20231205T165947Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -57,11 +57,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:47 GMT X-Amz-Id-2: - - txg30ca7c296e434288a317-006568ca01 + - txga072185c795e4245980a-00656f5703 X-Amz-Request-Id: - - txg30ca7c296e434288a317-006568ca01 + - txga072185c795e4245980a-00656f5703 status: 200 OK code: 200 duration: "" @@ -74,8 +74,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= + - 20231205T165947Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -87,11 +87,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:47 GMT X-Amz-Id-2: - - txgf093dd9c674a4388ae03-006568ca01 + - txg4b6f525bd20749f38e7f-00656f5703 X-Amz-Request-Id: - - txgf093dd9c674a4388ae03-006568ca01 + - txg4b6f525bd20749f38e7f-00656f5703 status: 200 OK code: 200 duration: "" @@ -104,23 +104,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-owner-1712104562412024281txgc2258ee9dce04d8e986e-006568ca01 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-owner-3712067177167610896txg6f08a2c4635447b6880c-00656f5704 headers: Content-Length: - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txgc2258ee9dce04d8e986e-006568ca01 + - txg6f08a2c4635447b6880c-00656f5704 X-Amz-Request-Id: - - txgc2258ee9dce04d8e986e-006568ca01 + - txg6f08a2c4635447b6880c-00656f5704 status: 404 Not Found code: 404 duration: "" @@ -133,24 +133,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-owner-17121045624120242811000false + test-acc-scw-object-acl-owner-37120671771676108961000false headers: Content-Length: - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg261b71689a334b55ace2-006568ca01 + - txg0200bb55fd564398b847-00656f5704 X-Amz-Request-Id: - - txg261b71689a334b55ace2-006568ca01 + - txg0200bb55fd564398b847-00656f5704 status: 200 OK code: 200 duration: "" @@ -163,22 +163,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-owner-1712104562412024281txg6dc565c2cf6649e4bc4f-006568ca01 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-owner-3712067177167610896txg1322cf2d48834aeb9115-00656f5704 headers: Content-Length: - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg6dc565c2cf6649e4bc4f-006568ca01 + - txg1322cf2d48834aeb9115-00656f5704 X-Amz-Request-Id: - - txg6dc565c2cf6649e4bc4f-006568ca01 + - txg1322cf2d48834aeb9115-00656f5704 status: 404 Not Found code: 404 duration: "" @@ -191,23 +191,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?cors= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-owner-1712104562412024281txgefc6e4a1048a46eabe3f-006568ca01 + does not exist/test-acc-scw-object-acl-owner-3712067177167610896txg9ab70a3a8f8641ceaa09-00656f5704 headers: Content-Length: - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txgefc6e4a1048a46eabe3f-006568ca01 + - txg9ab70a3a8f8641ceaa09-00656f5704 X-Amz-Request-Id: - - txgefc6e4a1048a46eabe3f-006568ca01 + - txg9ab70a3a8f8641ceaa09-00656f5704 status: 404 Not Found code: 404 duration: "" @@ -220,8 +220,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -233,11 +233,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg39b62ba9a6144badb1ab-006568ca01 + - txge5cb1378add74d57836e-00656f5704 X-Amz-Request-Id: - - txg39b62ba9a6144badb1ab-006568ca01 + - txge5cb1378add74d57836e-00656f5704 status: 200 OK code: 200 duration: "" @@ -250,45 +250,45 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-owner-1712104562412024281txg0b495443690c4d85a310-006568ca01 + does not exist/test-acc-scw-object-acl-owner-3712067177167610896txg4c391d7b09f1415ba302-00656f5704 headers: Content-Length: - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg0b495443690c4d85a310-006568ca01 + - txg4c391d7b09f1415ba302-00656f5704 X-Amz-Request-Id: - - txg0b495443690c4d85a310-006568ca01 + - txg4c391d7b09f1415ba302-00656f5704 status: 404 Not Found code: 404 duration: "" - request: - body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf form: {} headers: Content-Length: - "684" Content-Md5: - - y1KP5PK0ZSCtGhOQPEIFBQ== + - hyolSq3koUeG8L+6oSV/Yw== User-Agent: - aws-sdk-go/1.47.1 (go1.20.4; linux; amd64) X-Amz-Content-Sha256: - - 67b7cb52550379f804577b9952c4545b7f4d8faa7e21e6f68c096ad3ed9786bd + - 894d438eed42dfd288716d6ff6a48b6be5515e9452ed58d924757813130fdf06 X-Amz-Date: - - 20231130T174433Z + - 20231205T165948Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -296,11 +296,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg79a1a8eccb24435b8421-006568ca01 + - txg71dcc8ea062d427c8b45-00656f5704 X-Amz-Request-Id: - - txg79a1a8eccb24435b8421-006568ca01 + - txg71dcc8ea062d427c8b45-00656f5704 status: 200 OK code: 200 duration: "" @@ -313,10 +313,10 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z + - 20231205T165948Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -328,11 +328,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg5c4241ee4d514a019f9b-006568ca01 + - txg409a7e7e0b354620ac1d-00656f5704 X-Amz-Request-Id: - - txg5c4241ee4d514a019f9b-006568ca01 + - txg409a7e7e0b354620ac1d-00656f5704 status: 200 OK code: 200 duration: "" @@ -345,8 +345,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174433Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -354,13 +354,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:33 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txgb57c0e5c15504cd38c59-006568ca01 + - txg6da8710fa06742de80e2-00656f5704 X-Amz-Request-Id: - - txgb57c0e5c15504cd38c59-006568ca01 + - txg6da8710fa06742de80e2-00656f5704 status: 200 OK code: 200 duration: "" @@ -373,8 +373,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174434Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -386,11 +386,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:34 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg195f6f3996bd4b42a1b9-006568ca02 + - txgcd0f6028f9f246638269-00656f5704 X-Amz-Request-Id: - - txg195f6f3996bd4b42a1b9-006568ca02 + - txgcd0f6028f9f246638269-00656f5704 status: 200 OK code: 200 duration: "" @@ -403,23 +403,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174434Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-owner-1712104562412024281txg5fd46b6098494d8695a5-006568ca02 + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-owner-3712067177167610896txga6029ea5b1c14dbca9da-00656f5704 headers: Content-Length: - "267" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:34 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg5fd46b6098494d8695a5-006568ca02 + - txga6029ea5b1c14dbca9da-00656f5704 X-Amz-Request-Id: - - txg5fd46b6098494d8695a5-006568ca02 + - txga6029ea5b1c14dbca9da-00656f5704 status: 404 Not Found code: 404 duration: "" @@ -432,24 +432,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174434Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-owner-17121045624120242811000false + test-acc-scw-object-acl-owner-37120671771676108961000false headers: Content-Length: - "275" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:34 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txgcce3309c0b814b5588c8-006568ca02 + - txgcc647df839a6402ebb84-00656f5704 X-Amz-Request-Id: - - txgcce3309c0b814b5588c8-006568ca02 + - txgcc647df839a6402ebb84-00656f5704 status: 200 OK code: 200 duration: "" @@ -462,22 +462,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174434Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-owner-1712104562412024281txg60c7b3ec5ec84888833b-006568ca02 + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-owner-3712067177167610896txgea0fefa5a786422fad58-00656f5704 headers: Content-Length: - "212" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:34 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg60c7b3ec5ec84888833b-006568ca02 + - txgea0fefa5a786422fad58-00656f5704 X-Amz-Request-Id: - - txg60c7b3ec5ec84888833b-006568ca02 + - txgea0fefa5a786422fad58-00656f5704 status: 404 Not Found code: 404 duration: "" @@ -490,23 +490,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174434Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?cors= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-owner-1712104562412024281txg8eafa88b00484ea9a03e-006568ca02 + does not exist/test-acc-scw-object-acl-owner-3712067177167610896txgcf68bc1536544bf98a48-00656f5704 headers: Content-Length: - "235" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:34 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg8eafa88b00484ea9a03e-006568ca02 + - txgcf68bc1536544bf98a48-00656f5704 X-Amz-Request-Id: - - txg8eafa88b00484ea9a03e-006568ca02 + - txgcf68bc1536544bf98a48-00656f5704 status: 404 Not Found code: 404 duration: "" @@ -519,8 +519,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174434Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -532,11 +532,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:34 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg03e5d1ee5cc245e78dcd-006568ca02 + - txgf2b5b8fb99d845efaf44-00656f5704 X-Amz-Request-Id: - - txg03e5d1ee5cc245e78dcd-006568ca02 + - txgf2b5b8fb99d845efaf44-00656f5704 status: 200 OK code: 200 duration: "" @@ -549,23 +549,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174434Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165948Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-owner-1712104562412024281txgbeb32708dace4fcebf51-006568ca02 + does not exist/test-acc-scw-object-acl-owner-3712067177167610896txgbd45ac667a464bd59399-00656f5704 headers: Content-Length: - "245" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:34 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txgbeb32708dace4fcebf51-006568ca02 + - txgbd45ac667a464bd59399-00656f5704 X-Amz-Request-Id: - - txgbeb32708dace4fcebf51-006568ca02 + - txgbd45ac667a464bd59399-00656f5704 status: 404 Not Found code: 404 duration: "" @@ -578,10 +578,10 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174434Z + - 20231205T165948Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/?acl= + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -593,11 +593,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:34 GMT + - Tue, 05 Dec 2023 16:59:48 GMT X-Amz-Id-2: - - txg6bab5cc5ab9948b3aaf0-006568ca02 + - txgc7270513a11542089927-00656f5704 X-Amz-Request-Id: - - txg6bab5cc5ab9948b3aaf0-006568ca02 + - txgc7270513a11542089927-00656f5704 status: 200 OK code: 200 duration: "" @@ -610,8 +610,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174435Z - url: https://test-acc-scw-object-acl-owner-1712104562412024281.s3.nl-ams.scw.cloud/ + - 20231205T165949Z + url: https://test-acc-scw-object-acl-owner-3712067177167610896.s3.nl-ams.scw.cloud/ method: DELETE response: body: "" @@ -621,11 +621,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 30 Nov 2023 17:44:35 GMT + - Tue, 05 Dec 2023 16:59:49 GMT X-Amz-Id-2: - - tx4af2f659ac7f46048b72c-006568ca03 + - tx713f87998d4e406f8fc4b-00656f5705 X-Amz-Request-Id: - - tx4af2f659ac7f46048b72c-006568ca03 + - tx713f87998d4e406f8fc4b-00656f5705 status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml b/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml index 216f84fb2..1b1b7e8f5 100644 --- a/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-grantee.cassette.yaml @@ -16,8 +16,8 @@ interactions: X-Amz-Content-Sha256: - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d X-Amz-Date: - - 20231130T174427Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ + - 20231205T165941Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:27 GMT + - Tue, 05 Dec 2023 16:59:41 GMT Location: - - /test-acc-scw-object-acl-grantee-7164258820218511506 + - /test-acc-scw-object-acl-grantee-4204581849840203589 X-Amz-Id-2: - - txge2c557536ecb4c149c75-006568c9fb + - txgc8de766d4e434fbd8ec0-00656f56fd X-Amz-Request-Id: - - txge2c557536ecb4c149c75-006568c9fb + - txgc8de766d4e434fbd8ec0-00656f56fd status: 200 OK code: 200 duration: "" @@ -48,8 +48,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174427Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165941Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -57,11 +57,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:27 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg5182196895c1483db789-006568c9fb + - txgbd539920752d4fcead8d-00656f56fe X-Amz-Request-Id: - - txg5182196895c1483db789-006568c9fb + - txgbd539920752d4fcead8d-00656f56fe status: 200 OK code: 200 duration: "" @@ -74,8 +74,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174427Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -87,11 +87,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:27 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg0dcb36dff2af4527832e-006568c9fb + - txgc25deeb42a894d00b1cc-00656f56fe X-Amz-Request-Id: - - txg0dcb36dff2af4527832e-006568c9fb + - txgc25deeb42a894d00b1cc-00656f56fe status: 200 OK code: 200 duration: "" @@ -104,23 +104,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174427Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-7164258820218511506txg10657879ed0646c3b911-006568c9fb + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-4204581849840203589txg3f6b6f626d654897bab3-00656f56fe headers: Content-Length: - "269" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:27 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg10657879ed0646c3b911-006568c9fb + - txg3f6b6f626d654897bab3-00656f56fe X-Amz-Request-Id: - - txg10657879ed0646c3b911-006568c9fb + - txg3f6b6f626d654897bab3-00656f56fe status: 404 Not Found code: 404 duration: "" @@ -133,24 +133,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174427Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-grantee-71642588202185115061000false + test-acc-scw-object-acl-grantee-42045818498402035891000false headers: Content-Length: - "277" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:27 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg2b333609b1694d9d85de-006568c9fb + - txg9cfaa44b7f8a436fb47d-00656f56fe X-Amz-Request-Id: - - txg2b333609b1694d9d85de-006568c9fb + - txg9cfaa44b7f8a436fb47d-00656f56fe status: 200 OK code: 200 duration: "" @@ -163,22 +163,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174427Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg788048fbccb74cc1a73e-006568c9fc + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txg66f4e33066e747888255-00656f56fe headers: Content-Length: - "214" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg788048fbccb74cc1a73e-006568c9fc + - txg66f4e33066e747888255-00656f56fe X-Amz-Request-Id: - - txg788048fbccb74cc1a73e-006568c9fc + - txg66f4e33066e747888255-00656f56fe status: 404 Not Found code: 404 duration: "" @@ -191,23 +191,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?cors= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg7930013ea8db4e278e1f-006568c9fc + does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txgeb22ddfead494e73a57d-00656f56fe headers: Content-Length: - "237" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg7930013ea8db4e278e1f-006568c9fc + - txgeb22ddfead494e73a57d-00656f56fe X-Amz-Request-Id: - - txg7930013ea8db4e278e1f-006568c9fc + - txgeb22ddfead494e73a57d-00656f56fe status: 404 Not Found code: 404 duration: "" @@ -220,8 +220,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -233,11 +233,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txga6d6b9c699b34da99b74-006568c9fc + - txg6134bd7ad85e4de1b876-00656f56fe X-Amz-Request-Id: - - txga6d6b9c699b34da99b74-006568c9fc + - txg6134bd7ad85e4de1b876-00656f56fe status: 200 OK code: 200 duration: "" @@ -250,23 +250,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txgd6e1c6d0c88b4181b9eb-006568c9fc + does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txge019e325637a4c98a303-00656f56fe headers: Content-Length: - "247" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txgd6e1c6d0c88b4181b9eb-006568c9fc + - txge019e325637a4c98a303-00656f56fe X-Amz-Request-Id: - - txgd6e1c6d0c88b4181b9eb-006568c9fc + - txge019e325637a4c98a303-00656f56fe status: 404 Not Found code: 404 duration: "" @@ -285,8 +285,8 @@ interactions: X-Amz-Content-Sha256: - 40addeb28501eb9d63de75e496652fa9146db38b6a865ae9a7c52c8f57f66c53 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -294,11 +294,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg69a6ac4328ab48d98c78-006568c9fc + - txg101cddd28d5342bcbf8d-00656f56fe X-Amz-Request-Id: - - txg69a6ac4328ab48d98c78-006568c9fc + - txg101cddd28d5342bcbf8d-00656f56fe status: 200 OK code: 200 duration: "" @@ -311,8 +311,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -324,11 +324,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg9c81b29d0d344c79932c-006568c9fc + - txgc06a7a09bcd949e3bc47-00656f56fe X-Amz-Request-Id: - - txg9c81b29d0d344c79932c-006568c9fc + - txgc06a7a09bcd949e3bc47-00656f56fe status: 200 OK code: 200 duration: "" @@ -341,8 +341,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -350,13 +350,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg1c15f54153cc4a1a90fa-006568c9fc + - txg33dfc4a1eded4054bd4e-00656f56fe X-Amz-Request-Id: - - txg1c15f54153cc4a1a90fa-006568c9fc + - txg33dfc4a1eded4054bd4e-00656f56fe status: 200 OK code: 200 duration: "" @@ -369,8 +369,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165942Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -382,11 +382,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:42 GMT X-Amz-Id-2: - - txg464f0f9a1bc24984b4c6-006568c9fc + - txg77b05e0ceccd4bb2a724-00656f56fe X-Amz-Request-Id: - - txg464f0f9a1bc24984b4c6-006568c9fc + - txg77b05e0ceccd4bb2a724-00656f56fe status: 200 OK code: 200 duration: "" @@ -399,23 +399,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-7164258820218511506txgf840a55276574b7ca998-006568c9fc + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-4204581849840203589txg56bebf00584d413f9ecb-00656f56ff headers: Content-Length: - "269" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txgf840a55276574b7ca998-006568c9fc + - txg56bebf00584d413f9ecb-00656f56ff X-Amz-Request-Id: - - txgf840a55276574b7ca998-006568c9fc + - txg56bebf00584d413f9ecb-00656f56ff status: 404 Not Found code: 404 duration: "" @@ -428,24 +428,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-grantee-71642588202185115061000false + test-acc-scw-object-acl-grantee-42045818498402035891000false headers: Content-Length: - "277" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txgc1a5a820b45149eb901f-006568c9fc + - txgc258ea3d3f9c4721acbf-00656f56ff X-Amz-Request-Id: - - txgc1a5a820b45149eb901f-006568c9fc + - txgc258ea3d3f9c4721acbf-00656f56ff status: 200 OK code: 200 duration: "" @@ -458,22 +458,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txga039467bd2f444c5bfe9-006568c9fc + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txg847d393fd6f44b3398af-00656f56ff headers: Content-Length: - "214" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txga039467bd2f444c5bfe9-006568c9fc + - txg847d393fd6f44b3398af-00656f56ff X-Amz-Request-Id: - - txga039467bd2f444c5bfe9-006568c9fc + - txg847d393fd6f44b3398af-00656f56ff status: 404 Not Found code: 404 duration: "" @@ -486,23 +486,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?cors= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg1383e90a798d439e8c2b-006568c9fc + does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txg0eac32b107f94d34ac52-00656f56ff headers: Content-Length: - "237" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txg1383e90a798d439e8c2b-006568c9fc + - txg0eac32b107f94d34ac52-00656f56ff X-Amz-Request-Id: - - txg1383e90a798d439e8c2b-006568c9fc + - txg0eac32b107f94d34ac52-00656f56ff status: 404 Not Found code: 404 duration: "" @@ -515,8 +515,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -528,11 +528,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txg8bc8bc41aeb84236a4c4-006568c9fc + - txg46ca4894bd604775ab97-00656f56ff X-Amz-Request-Id: - - txg8bc8bc41aeb84236a4c4-006568c9fc + - txg46ca4894bd604775ab97-00656f56ff status: 200 OK code: 200 duration: "" @@ -545,23 +545,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg8fc196871b284f2697b5-006568c9fc + does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txg7ae49f6f7c7a414dae3a-00656f56ff headers: Content-Length: - "247" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txg8fc196871b284f2697b5-006568c9fc + - txg7ae49f6f7c7a414dae3a-00656f56ff X-Amz-Request-Id: - - txg8fc196871b284f2697b5-006568c9fc + - txg7ae49f6f7c7a414dae3a-00656f56ff status: 404 Not Found code: 404 duration: "" @@ -574,8 +574,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174428Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -587,11 +587,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:28 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txg91f625aa30a548ceba58-006568c9fc + - txg65d8448294f544a0b13c-00656f56ff X-Amz-Request-Id: - - txg91f625aa30a548ceba58-006568c9fc + - txg65d8448294f544a0b13c-00656f56ff status: 200 OK code: 200 duration: "" @@ -604,8 +604,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174429Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -617,11 +617,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:29 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txg865d4c8f7175427a81d4-006568c9fd + - txg5ec2f0baac8f4a1e9b5d-00656f56ff X-Amz-Request-Id: - - txg865d4c8f7175427a81d4-006568c9fd + - txg5ec2f0baac8f4a1e9b5d-00656f56ff status: 200 OK code: 200 duration: "" @@ -634,23 +634,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174429Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-7164258820218511506txgf2a7740a9ea64a089742-006568c9fd + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-4204581849840203589txga93e1fa42c0d43ea9c42-00656f56ff headers: Content-Length: - "269" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:29 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txgf2a7740a9ea64a089742-006568c9fd + - txga93e1fa42c0d43ea9c42-00656f56ff X-Amz-Request-Id: - - txgf2a7740a9ea64a089742-006568c9fd + - txga93e1fa42c0d43ea9c42-00656f56ff status: 404 Not Found code: 404 duration: "" @@ -663,24 +663,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174429Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-grantee-71642588202185115061000false + test-acc-scw-object-acl-grantee-42045818498402035891000false headers: Content-Length: - "277" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:29 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txg58499e9f72fb4a04a7fa-006568c9fd + - txg012aa90f482d44b09847-00656f56ff X-Amz-Request-Id: - - txg58499e9f72fb4a04a7fa-006568c9fd + - txg012aa90f482d44b09847-00656f56ff status: 200 OK code: 200 duration: "" @@ -693,22 +693,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174429Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txgd57af1a5ba8c45ed9212-006568c9fd + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txg1f82acf02e9a4607970e-00656f56ff headers: Content-Length: - "214" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:29 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txgd57af1a5ba8c45ed9212-006568c9fd + - txg1f82acf02e9a4607970e-00656f56ff X-Amz-Request-Id: - - txgd57af1a5ba8c45ed9212-006568c9fd + - txg1f82acf02e9a4607970e-00656f56ff status: 404 Not Found code: 404 duration: "" @@ -721,23 +721,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174429Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?cors= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg86058299b52346bd8c97-006568c9fd + does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txg1dec48913c9e4a97b18f-00656f56ff headers: Content-Length: - "237" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:29 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txg86058299b52346bd8c97-006568c9fd + - txg1dec48913c9e4a97b18f-00656f56ff X-Amz-Request-Id: - - txg86058299b52346bd8c97-006568c9fd + - txg1dec48913c9e4a97b18f-00656f56ff status: 404 Not Found code: 404 duration: "" @@ -750,8 +750,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174429Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -763,11 +763,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:29 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txg42769201b59f4decabc3-006568c9fd + - txg4128c1fa1bb4487bb9ee-00656f56ff X-Amz-Request-Id: - - txg42769201b59f4decabc3-006568c9fd + - txg4128c1fa1bb4487bb9ee-00656f56ff status: 200 OK code: 200 duration: "" @@ -780,23 +780,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174429Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txgdef948f471db4a38a17c-006568c9fd + does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txgf7aa19fb6cfb4064acf4-00656f56ff headers: Content-Length: - "247" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:29 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txgdef948f471db4a38a17c-006568c9fd + - txgf7aa19fb6cfb4064acf4-00656f56ff X-Amz-Request-Id: - - txgdef948f471db4a38a17c-006568c9fd + - txgf7aa19fb6cfb4064acf4-00656f56ff status: 404 Not Found code: 404 duration: "" @@ -809,8 +809,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174429Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165943Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -822,11 +822,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:29 GMT + - Tue, 05 Dec 2023 16:59:43 GMT X-Amz-Id-2: - - txge25329a755354e35835d-006568c9fd + - txg15de5822b193493089f6-00656f56ff X-Amz-Request-Id: - - txge25329a755354e35835d-006568c9fd + - txg15de5822b193493089f6-00656f56ff status: 200 OK code: 200 duration: "" @@ -846,8 +846,8 @@ interactions: X-Amz-Content-Sha256: - e34c50821643ee3e652f0d4488f9885ddb3bba7393b50498ba849c4bdb4b2cb2 X-Amz-Date: - - 20231130T174430Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165944Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -855,11 +855,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 17:44:30 GMT + - Tue, 05 Dec 2023 16:59:44 GMT X-Amz-Id-2: - - txgdb9d3564a6354d969911-006568c9fe + - txg84aee90dd1a849dd9b83-00656f5700 X-Amz-Request-Id: - - txgdb9d3564a6354d969911-006568c9fe + - txg84aee90dd1a849dd9b83-00656f5700 status: 200 OK code: 200 duration: "" @@ -872,8 +872,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174430Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165944Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -885,11 +885,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:30 GMT + - Tue, 05 Dec 2023 16:59:44 GMT X-Amz-Id-2: - - txg65693761a2434e84a81a-006568c9fe + - txgac2d0f60395147f6bc0b-00656f5700 X-Amz-Request-Id: - - txg65693761a2434e84a81a-006568c9fe + - txgac2d0f60395147f6bc0b-00656f5700 status: 200 OK code: 200 duration: "" @@ -902,8 +902,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174430Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ + - 20231205T165944Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -911,13 +911,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:30 GMT + - Tue, 05 Dec 2023 16:59:44 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg616443244d9c45eba89f-006568c9fe + - txg73242af2e2b0444d90bc-00656f5700 X-Amz-Request-Id: - - txg616443244d9c45eba89f-006568c9fe + - txg73242af2e2b0444d90bc-00656f5700 status: 200 OK code: 200 duration: "" @@ -930,8 +930,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174430Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165944Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -943,11 +943,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:30 GMT + - Tue, 05 Dec 2023 16:59:44 GMT X-Amz-Id-2: - - txg94a9eccf4d8e40aa8536-006568c9fe + - txg587d2ba2ccee49899956-00656f5700 X-Amz-Request-Id: - - txg94a9eccf4d8e40aa8536-006568c9fe + - txg587d2ba2ccee49899956-00656f5700 status: 200 OK code: 200 duration: "" @@ -960,23 +960,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174430Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165944Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-7164258820218511506txgd8c6741054f04e1186b4-006568c9fe + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-grantee-4204581849840203589txg314a9af7a0f34cc2845e-00656f5700 headers: Content-Length: - "269" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:30 GMT + - Tue, 05 Dec 2023 16:59:44 GMT X-Amz-Id-2: - - txgd8c6741054f04e1186b4-006568c9fe + - txg314a9af7a0f34cc2845e-00656f5700 X-Amz-Request-Id: - - txgd8c6741054f04e1186b4-006568c9fe + - txg314a9af7a0f34cc2845e-00656f5700 status: 404 Not Found code: 404 duration: "" @@ -989,24 +989,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174430Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ + - 20231205T165944Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-grantee-71642588202185115061000false + test-acc-scw-object-acl-grantee-42045818498402035891000false headers: Content-Length: - "277" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:30 GMT + - Tue, 05 Dec 2023 16:59:44 GMT X-Amz-Id-2: - - txg24fa09d0d4de4157b9ef-006568c9fe + - txg041a2abdc45a4ee2aa30-00656f5700 X-Amz-Request-Id: - - txg24fa09d0d4de4157b9ef-006568c9fe + - txg041a2abdc45a4ee2aa30-00656f5700 status: 200 OK code: 200 duration: "" @@ -1019,22 +1019,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174430Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165944Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg8c4e852c0439469ca296-006568c9fe + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txgfeaf767e584342e89d57-00656f5700 headers: Content-Length: - "214" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:30 GMT + - Tue, 05 Dec 2023 16:59:44 GMT X-Amz-Id-2: - - txg8c4e852c0439469ca296-006568c9fe + - txgfeaf767e584342e89d57-00656f5700 X-Amz-Request-Id: - - txg8c4e852c0439469ca296-006568c9fe + - txgfeaf767e584342e89d57-00656f5700 status: 404 Not Found code: 404 duration: "" @@ -1047,23 +1047,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174431Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?cors= + - 20231205T165944Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txg2b1141559d164e899d3b-006568c9ff + does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txgc448fadcbdee407c9f10-00656f5700 headers: Content-Length: - "237" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:31 GMT + - Tue, 05 Dec 2023 16:59:44 GMT X-Amz-Id-2: - - txg2b1141559d164e899d3b-006568c9ff + - txgc448fadcbdee407c9f10-00656f5700 X-Amz-Request-Id: - - txg2b1141559d164e899d3b-006568c9ff + - txgc448fadcbdee407c9f10-00656f5700 status: 404 Not Found code: 404 duration: "" @@ -1076,8 +1076,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174431Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165945Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -1089,11 +1089,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:31 GMT + - Tue, 05 Dec 2023 16:59:45 GMT X-Amz-Id-2: - - txg5ae1e2e9e6564d659cac-006568c9ff + - txg537d2dcc8a0e472ebabe-00656f5701 X-Amz-Request-Id: - - txg5ae1e2e9e6564d659cac-006568c9ff + - txg537d2dcc8a0e472ebabe-00656f5701 status: 200 OK code: 200 duration: "" @@ -1106,23 +1106,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174431Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165945Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-grantee-7164258820218511506txgeb4a89256f624a69a066-006568c9ff + does not exist/test-acc-scw-object-acl-grantee-4204581849840203589txg6881ebace41846b9bafc-00656f5701 headers: Content-Length: - "247" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 17:44:31 GMT + - Tue, 05 Dec 2023 16:59:45 GMT X-Amz-Id-2: - - txgeb4a89256f624a69a066-006568c9ff + - txg6881ebace41846b9bafc-00656f5701 X-Amz-Request-Id: - - txgeb4a89256f624a69a066-006568c9ff + - txg6881ebace41846b9bafc-00656f5701 status: 404 Not Found code: 404 duration: "" @@ -1135,8 +1135,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174431Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165945Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -1148,11 +1148,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:31 GMT + - Tue, 05 Dec 2023 16:59:45 GMT X-Amz-Id-2: - - txg4dcb2d7dd6c04bba99b3-006568c9ff + - txg4171c3494a134d439fcb-00656f5701 X-Amz-Request-Id: - - txg4dcb2d7dd6c04bba99b3-006568c9ff + - txg4171c3494a134d439fcb-00656f5701 status: 200 OK code: 200 duration: "" @@ -1165,8 +1165,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174431Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/?acl= + - 20231205T165946Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -1178,11 +1178,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 17:44:31 GMT + - Tue, 05 Dec 2023 16:59:46 GMT X-Amz-Id-2: - - txg0478f83e235e4e5ab4b2-006568c9ff + - txg04631386eee947cea8ce-00656f5702 X-Amz-Request-Id: - - txg0478f83e235e4e5ab4b2-006568c9ff + - txg04631386eee947cea8ce-00656f5702 status: 200 OK code: 200 duration: "" @@ -1195,8 +1195,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T174431Z - url: https://test-acc-scw-object-acl-grantee-7164258820218511506.s3.nl-ams.scw.cloud/ + - 20231205T165946Z + url: https://test-acc-scw-object-acl-grantee-4204581849840203589.s3.nl-ams.scw.cloud/ method: DELETE response: body: "" @@ -1206,11 +1206,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 30 Nov 2023 17:44:32 GMT + - Tue, 05 Dec 2023 16:59:46 GMT X-Amz-Id-2: - - tx40fc2098d6654d6eadb78-006568c9ff + - tx2589ee3d8ef8432bbda1d-00656f5702 X-Amz-Request-Id: - - tx40fc2098d6654d6eadb78-006568c9ff + - tx2589ee3d8ef8432bbda1d-00656f5702 status: 204 No Content code: 204 duration: "" diff --git a/scaleway/testdata/object-bucket-acl-with-bucket-name.cassette.yaml b/scaleway/testdata/object-bucket-acl-with-bucket-name.cassette.yaml index c25821d17..8c983e74d 100644 --- a/scaleway/testdata/object-bucket-acl-with-bucket-name.cassette.yaml +++ b/scaleway/testdata/object-bucket-acl-with-bucket-name.cassette.yaml @@ -16,8 +16,8 @@ interactions: X-Amz-Content-Sha256: - b86017d61d4ad22a838e75e918325b623687c3e84d631bc2b6435970bf12473d X-Amz-Date: - - 20231130T183052Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + - 20231205T165950Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/ method: PUT response: body: "" @@ -25,13 +25,13 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 18:30:52 GMT + - Tue, 05 Dec 2023 16:59:50 GMT Location: - - /test-acc-scw-object-acl-name-4616058518139885197 + - /test-acc-scw-object-acl-name-4686542717502351766 X-Amz-Id-2: - - txgf8ed827191c94bf7ba09-006568d4dc + - txg2d597984bc7f45569549-00656f5706 X-Amz-Request-Id: - - txgf8ed827191c94bf7ba09-006568d4dc + - txg2d597984bc7f45569549-00656f5706 status: 200 OK code: 200 duration: "" @@ -48,8 +48,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183052Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + - 20231205T165950Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -57,11 +57,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 18:30:52 GMT + - Tue, 05 Dec 2023 16:59:50 GMT X-Amz-Id-2: - - txgb82b5d0cd133495c9483-006568d4dc + - txgddbf566edafb42af93ec-00656f5706 X-Amz-Request-Id: - - txgb82b5d0cd133495c9483-006568d4dc + - txgddbf566edafb42af93ec-00656f5706 status: 200 OK code: 200 duration: "" @@ -74,8 +74,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183052Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + - 20231205T165950Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -87,11 +87,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 18:30:52 GMT + - Tue, 05 Dec 2023 16:59:50 GMT X-Amz-Id-2: - - txgc0baddcfcfc448aeb8e7-006568d4dc + - txg1d226623f5da4d29a64c-00656f5706 X-Amz-Request-Id: - - txgc0baddcfcfc448aeb8e7-006568d4dc + - txg1d226623f5da4d29a64c-00656f5706 status: 200 OK code: 200 duration: "" @@ -104,23 +104,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183052Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165950Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4616058518139885197txg9c123c4a655942e1aee7-006568d4dc + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4686542717502351766txg541ff60594f84708a1cc-00656f5706 headers: Content-Length: - "266" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:52 GMT + - Tue, 05 Dec 2023 16:59:50 GMT X-Amz-Id-2: - - txg9c123c4a655942e1aee7-006568d4dc + - txg541ff60594f84708a1cc-00656f5706 X-Amz-Request-Id: - - txg9c123c4a655942e1aee7-006568d4dc + - txg541ff60594f84708a1cc-00656f5706 status: 404 Not Found code: 404 duration: "" @@ -133,24 +133,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183052Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-name-46160585181398851971000false + test-acc-scw-object-acl-name-46865427175023517661000false headers: Content-Length: - "274" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:52 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txga955aca046bb44e29881-006568d4dc + - txgcf9df12800e046a4b645-00656f5707 X-Amz-Request-Id: - - txga955aca046bb44e29881-006568d4dc + - txgcf9df12800e046a4b645-00656f5707 status: 200 OK code: 200 duration: "" @@ -163,22 +163,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183052Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4616058518139885197txgd718d62966c748d48021-006568d4dc + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4686542717502351766txg5c231cc4a5e341b7a161-00656f5707 headers: Content-Length: - "211" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:52 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txgd718d62966c748d48021-006568d4dc + - txg5c231cc4a5e341b7a161-00656f5707 X-Amz-Request-Id: - - txgd718d62966c748d48021-006568d4dc + - txg5c231cc4a5e341b7a161-00656f5707 status: 404 Not Found code: 404 duration: "" @@ -191,23 +191,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183052Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?cors= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-name-4616058518139885197txg6bb84143637b4d76ad59-006568d4dc + does not exist/test-acc-scw-object-acl-name-4686542717502351766txg48defddc96454c1bb1c4-00656f5707 headers: Content-Length: - "234" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:52 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txg6bb84143637b4d76ad59-006568d4dc + - txg48defddc96454c1bb1c4-00656f5707 X-Amz-Request-Id: - - txg6bb84143637b4d76ad59-006568d4dc + - txg48defddc96454c1bb1c4-00656f5707 status: 404 Not Found code: 404 duration: "" @@ -220,8 +220,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183052Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -233,11 +233,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txgad82c928743c485d9554-006568d4dd + - txg5a38db8c01f3431684d5-00656f5707 X-Amz-Request-Id: - - txgad82c928743c485d9554-006568d4dd + - txg5a38db8c01f3431684d5-00656f5707 status: 200 OK code: 200 duration: "" @@ -250,23 +250,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-name-4616058518139885197txg91e7108c8cde4d1a848b-006568d4dd + does not exist/test-acc-scw-object-acl-name-4686542717502351766txg1e0b38530f15417f832d-00656f5707 headers: Content-Length: - "244" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txg91e7108c8cde4d1a848b-006568d4dd + - txg1e0b38530f15417f832d-00656f5707 X-Amz-Request-Id: - - txg91e7108c8cde4d1a848b-006568d4dd + - txg1e0b38530f15417f832d-00656f5707 status: 404 Not Found code: 404 duration: "" @@ -283,22 +283,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.fr-par.scw.cloud/?acl= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.fr-par.scw.cloud/?acl= method: PUT response: - body: NoSuchBucketThe specified bucket does not exist/test-acc-scw-object-acl-name-4616058518139885197txg9cff997fb2244e29a233-006568d4dd + body: NoSuchBucketThe specified bucket does not exist/test-acc-scw-object-acl-name-4686542717502351766txg76cf0b6d987c463a858b-00656f5707 headers: Content-Length: - "221" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txg9cff997fb2244e29a233-006568d4dd + - txg76cf0b6d987c463a858b-00656f5707 X-Amz-Request-Id: - - txg9cff997fb2244e29a233-006568d4dd + - txg76cf0b6d987c463a858b-00656f5707 status: 404 Not Found code: 404 duration: "" @@ -311,8 +311,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -324,11 +324,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txg214dc94ac2e24d1d88d8-006568d4dd + - txg12a7188927b54a36856e-00656f5707 X-Amz-Request-Id: - - txg214dc94ac2e24d1d88d8-006568d4dd + - txg12a7188927b54a36856e-00656f5707 status: 200 OK code: 200 duration: "" @@ -341,23 +341,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4616058518139885197txg87e195dc30294a129a18-006568d4dd + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4686542717502351766txge10beefb1e5c480983c4-00656f5707 headers: Content-Length: - "266" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txg87e195dc30294a129a18-006568d4dd + - txge10beefb1e5c480983c4-00656f5707 X-Amz-Request-Id: - - txg87e195dc30294a129a18-006568d4dd + - txge10beefb1e5c480983c4-00656f5707 status: 404 Not Found code: 404 duration: "" @@ -370,24 +370,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-name-46160585181398851971000false + test-acc-scw-object-acl-name-46865427175023517661000false headers: Content-Length: - "274" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txge70ebd37d4174388a858-006568d4dd + - txg9cd9c6135afb4af1b241-00656f5707 X-Amz-Request-Id: - - txge70ebd37d4174388a858-006568d4dd + - txg9cd9c6135afb4af1b241-00656f5707 status: 200 OK code: 200 duration: "" @@ -400,22 +400,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4616058518139885197txgefa2ddadbed44056bda5-006568d4dd + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4686542717502351766txg4bcbc367a3aa460b96df-00656f5707 headers: Content-Length: - "211" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txgefa2ddadbed44056bda5-006568d4dd + - txg4bcbc367a3aa460b96df-00656f5707 X-Amz-Request-Id: - - txgefa2ddadbed44056bda5-006568d4dd + - txg4bcbc367a3aa460b96df-00656f5707 status: 404 Not Found code: 404 duration: "" @@ -428,23 +428,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?cors= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-name-4616058518139885197txgd2a76867207f4ceeae18-006568d4dd + does not exist/test-acc-scw-object-acl-name-4686542717502351766txg64251c37cdb64f61a445-00656f5707 headers: Content-Length: - "234" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txgd2a76867207f4ceeae18-006568d4dd + - txg64251c37cdb64f61a445-00656f5707 X-Amz-Request-Id: - - txgd2a76867207f4ceeae18-006568d4dd + - txg64251c37cdb64f61a445-00656f5707 status: 404 Not Found code: 404 duration: "" @@ -457,8 +457,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -470,11 +470,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txgba6ae164b6064dc7b770-006568d4dd + - txgdfebbb00c2354fb991fa-00656f5707 X-Amz-Request-Id: - - txgba6ae164b6064dc7b770-006568d4dd + - txgdfebbb00c2354fb991fa-00656f5707 status: 200 OK code: 200 duration: "" @@ -487,23 +487,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183053Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165951Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-name-4616058518139885197txg4650ddc82bc44304a019-006568d4dd + does not exist/test-acc-scw-object-acl-name-4686542717502351766txgdc2cd32238c242358705-00656f5707 headers: Content-Length: - "244" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:53 GMT + - Tue, 05 Dec 2023 16:59:51 GMT X-Amz-Id-2: - - txg4650ddc82bc44304a019-006568d4dd + - txgdc2cd32238c242358705-00656f5707 X-Amz-Request-Id: - - txg4650ddc82bc44304a019-006568d4dd + - txgdc2cd32238c242358705-00656f5707 status: 404 Not Found code: 404 duration: "" @@ -520,8 +520,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183054Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?acl= method: PUT response: body: "" @@ -529,11 +529,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 30 Nov 2023 18:30:54 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txg0f1a39129bdd411d9388-006568d4de + - txgd6f9b5094cce4ef7990e-00656f5708 X-Amz-Request-Id: - - txg0f1a39129bdd411d9388-006568d4de + - txgd6f9b5094cce4ef7990e-00656f5708 status: 200 OK code: 200 duration: "" @@ -546,8 +546,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183054Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -559,11 +559,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 18:30:54 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txg84616fc802f647b8899a-006568d4de + - txgdec3ef2cec36432b847b-00656f5708 X-Amz-Request-Id: - - txg84616fc802f647b8899a-006568d4de + - txgdec3ef2cec36432b847b-00656f5708 status: 200 OK code: 200 duration: "" @@ -576,8 +576,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183054Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/ method: HEAD response: body: "" @@ -585,13 +585,13 @@ interactions: Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:54 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg1bd1aef25eb642cbb46b-006568d4de + - txge438129af502409699a2-00656f5708 X-Amz-Request-Id: - - txg1bd1aef25eb642cbb46b-006568d4de + - txge438129af502409699a2-00656f5708 status: 200 OK code: 200 duration: "" @@ -604,8 +604,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183054Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -617,11 +617,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 18:30:54 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txg68375d8406dc4f3f975b-006568d4de + - txg6ad552419b454791bc6a-00656f5708 X-Amz-Request-Id: - - txg68375d8406dc4f3f975b-006568d4de + - txg6ad552419b454791bc6a-00656f5708 status: 200 OK code: 200 duration: "" @@ -634,23 +634,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183055Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?object-lock= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?object-lock= method: GET response: body: ObjectLockConfigurationNotFoundErrorObject - Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4616058518139885197txge5f9171f1c6743a89a55-006568d4df + Lock configuration does not exist for this bucket/test-acc-scw-object-acl-name-4686542717502351766txg9886c5869a54485fa6d0-00656f5708 headers: Content-Length: - "266" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:55 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txge5f9171f1c6743a89a55-006568d4df + - txg9886c5869a54485fa6d0-00656f5708 X-Amz-Request-Id: - - txge5f9171f1c6743a89a55-006568d4df + - txg9886c5869a54485fa6d0-00656f5708 status: 404 Not Found code: 404 duration: "" @@ -663,24 +663,24 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183055Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/ method: GET response: body: |- - test-acc-scw-object-acl-name-46160585181398851971000false + test-acc-scw-object-acl-name-46865427175023517661000false headers: Content-Length: - "274" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:55 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txgde06801dadbb42f5b421-006568d4df + - txg05a8efccaf874e76acd1-00656f5708 X-Amz-Request-Id: - - txgde06801dadbb42f5b421-006568d4df + - txg05a8efccaf874e76acd1-00656f5708 status: 200 OK code: 200 duration: "" @@ -693,22 +693,22 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183055Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?tagging= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?tagging= method: GET response: - body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4616058518139885197txg527f6a9f2fc043a8ba8d-006568d4df + body: NoSuchTagSetThe TagSet does not exist/test-acc-scw-object-acl-name-4686542717502351766txg4a405387495147edae61-00656f5708 headers: Content-Length: - "211" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:55 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txg527f6a9f2fc043a8ba8d-006568d4df + - txg4a405387495147edae61-00656f5708 X-Amz-Request-Id: - - txg527f6a9f2fc043a8ba8d-006568d4df + - txg4a405387495147edae61-00656f5708 status: 404 Not Found code: 404 duration: "" @@ -721,23 +721,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183055Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?cors= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?cors= method: GET response: body: NoSuchCORSConfigurationThe CORS configuration - does not exist/test-acc-scw-object-acl-name-4616058518139885197txgec720e4a27e04581948c-006568d4df + does not exist/test-acc-scw-object-acl-name-4686542717502351766txga5178a4328d94f298fe6-00656f5708 headers: Content-Length: - "234" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:55 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txgec720e4a27e04581948c-006568d4df + - txga5178a4328d94f298fe6-00656f5708 X-Amz-Request-Id: - - txgec720e4a27e04581948c-006568d4df + - txga5178a4328d94f298fe6-00656f5708 status: 404 Not Found code: 404 duration: "" @@ -750,8 +750,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183055Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?versioning= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?versioning= method: GET response: body: |- @@ -763,11 +763,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 18:30:55 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txg9b1f9b2d6e3c442181fb-006568d4df + - txgc7bc8afb96a4494fb561-00656f5708 X-Amz-Request-Id: - - txg9b1f9b2d6e3c442181fb-006568d4df + - txgc7bc8afb96a4494fb561-00656f5708 status: 200 OK code: 200 duration: "" @@ -780,23 +780,23 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183055Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?lifecycle= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: body: NoSuchLifecycleConfigurationThe lifecycle configuration - does not exist/test-acc-scw-object-acl-name-4616058518139885197txg0271c8506b2a4786a4a2-006568d4df + does not exist/test-acc-scw-object-acl-name-4686542717502351766txg682323110f324f7e9150-00656f5708 headers: Content-Length: - "244" Content-Type: - application/xml Date: - - Thu, 30 Nov 2023 18:30:55 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txg0271c8506b2a4786a4a2-006568d4df + - txg682323110f324f7e9150-00656f5708 X-Amz-Request-Id: - - txg0271c8506b2a4786a4a2-006568d4df + - txg682323110f324f7e9150-00656f5708 status: 404 Not Found code: 404 duration: "" @@ -809,8 +809,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183055Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/?acl= + - 20231205T165952Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/?acl= method: GET response: body: |- @@ -822,11 +822,11 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Thu, 30 Nov 2023 18:30:55 GMT + - Tue, 05 Dec 2023 16:59:52 GMT X-Amz-Id-2: - - txg5d4ecd73b1a248848aeb-006568d4df + - txgf2b929cae6c54233ae5e-00656f5708 X-Amz-Request-Id: - - txg5d4ecd73b1a248848aeb-006568d4df + - txgf2b929cae6c54233ae5e-00656f5708 status: 200 OK code: 200 duration: "" @@ -839,8 +839,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20231130T183055Z - url: https://test-acc-scw-object-acl-name-4616058518139885197.s3.nl-ams.scw.cloud/ + - 20231205T165953Z + url: https://test-acc-scw-object-acl-name-4686542717502351766.s3.nl-ams.scw.cloud/ method: DELETE response: body: "" @@ -850,11 +850,11 @@ interactions: Content-Type: - text/html; charset=UTF-8 Date: - - Thu, 30 Nov 2023 18:30:56 GMT + - Tue, 05 Dec 2023 16:59:53 GMT X-Amz-Id-2: - - txb314fb4539874aa2b2477-006568d4df + - tx8fd0b8e718a94c76858fc-00656f5709 X-Amz-Request-Id: - - txb314fb4539874aa2b2477-006568d4df + - tx8fd0b8e718a94c76858fc-00656f5709 status: 204 No Content code: 204 duration: ""