diff --git a/internal/services/container/container.go b/internal/services/container/container.go index 783b219a6b..2d69f6238f 100644 --- a/internal/services/container/container.go +++ b/internal/services/container/container.go @@ -397,7 +397,7 @@ func ResourceContainerUpdate(ctx context.Context, d *schema.ResourceData, m inte if d.HasChanges("secret_environment_variables") { oldEnv, newEnv := d.GetChange("secret_environment_variables") - req.SecretEnvironmentVariables = FilterSecretEnvsToPatch(expandContainerSecrets(oldEnv), expandContainerSecrets(newEnv)) + req.SecretEnvironmentVariables = filterSecretEnvsToPatch(expandContainerSecrets(oldEnv), expandContainerSecrets(newEnv)) } if d.HasChanges("min_scale") { diff --git a/internal/services/container/container_test.go b/internal/services/container/container_test.go index 98a1413e75..5524554749 100644 --- a/internal/services/container/container_test.go +++ b/internal/services/container/container_test.go @@ -13,7 +13,6 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/container" containerchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/container/testfuncs" - "github.com/stretchr/testify/assert" ) func TestAccContainer_Basic(t *testing.T) { @@ -629,26 +628,3 @@ func passwordMatchHash(parent string, key string, password string) resource.Test return nil } } - -func TestFilterSecretEnvsToPatch(t *testing.T) { - testSecret := "test_secret" - secretToDelete := "secret_to_delete" - updatedSecret := "updated_secret" - newSecret := "new_secret" - - oldEnv := []*containerSDK.Secret{ - {Key: testSecret, Value: &testSecret}, - {Key: secretToDelete, Value: &secretToDelete}, - } - newEnv := []*containerSDK.Secret{ - {Key: testSecret, Value: &updatedSecret}, - {Key: newSecret, Value: &newSecret}, - } - - toPatch := container.FilterSecretEnvsToPatch(oldEnv, newEnv) - assert.Equal(t, []*containerSDK.Secret{ - {Key: testSecret, Value: &updatedSecret}, - {Key: newSecret, Value: &newSecret}, - {Key: secretToDelete, Value: nil}, - }, toPatch) -} diff --git a/internal/services/container/helpers_container.go b/internal/services/container/helpers_container.go index 51407f150d..66fdafbd3b 100644 --- a/internal/services/container/helpers_container.go +++ b/internal/services/container/helpers_container.go @@ -3,7 +3,6 @@ package container import ( "context" "errors" - "fmt" "slices" "strings" "time" @@ -317,30 +316,6 @@ func expandContainerSecrets(secretsRawMap interface{}) []*container.Secret { return secrets } -func convertToMapStringInterface(raw interface{}) map[string]interface{} { - out := make(map[string]interface{}) - if raw == nil { - return out - } - - m, ok := raw.(map[interface{}]interface{}) - if ok { - for k, v := range m { - stringKey := fmt.Sprintf("%v", k) - out[stringKey] = v - } - - return out - } - - m2, ok := raw.(map[string]interface{}) - if ok { - return m2 - } - - return out -} - func isContainerDNSResolveError(err error) bool { responseError := &scw.ResponseError{} @@ -373,7 +348,7 @@ func retryCreateContainerDomain(ctx context.Context, containerAPI *container.API } } -func FilterSecretEnvsToPatch(oldEnv []*container.Secret, newEnv []*container.Secret) []*container.Secret { +func filterSecretEnvsToPatch(oldEnv []*container.Secret, newEnv []*container.Secret) []*container.Secret { toPatch := []*container.Secret{} // create and update - ignore hashed values for _, env := range newEnv { diff --git a/internal/services/container/helpers_container_internal_test.go b/internal/services/container/helpers_container_internal_test.go new file mode 100644 index 0000000000..123d90ec8d --- /dev/null +++ b/internal/services/container/helpers_container_internal_test.go @@ -0,0 +1,31 @@ +package container + +import ( + "testing" + + containerSDK "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" + "github.com/stretchr/testify/assert" +) + +func TestFilterSecretEnvsToPatch(t *testing.T) { + testSecret := "test_secret" + secretToDelete := "secret_to_delete" + updatedSecret := "updated_secret" + newSecret := "new_secret" + + oldEnv := []*containerSDK.Secret{ + {Key: testSecret, Value: &testSecret}, + {Key: secretToDelete, Value: &secretToDelete}, + } + newEnv := []*containerSDK.Secret{ + {Key: testSecret, Value: &updatedSecret}, + {Key: newSecret, Value: &newSecret}, + } + + toPatch := filterSecretEnvsToPatch(oldEnv, newEnv) + assert.Equal(t, []*containerSDK.Secret{ + {Key: testSecret, Value: &updatedSecret}, + {Key: newSecret, Value: &newSecret}, + {Key: secretToDelete, Value: nil}, + }, toPatch) +} diff --git a/internal/services/container/namespace.go b/internal/services/container/namespace.go index ecd14da2d8..4358db6751 100644 --- a/internal/services/container/namespace.go +++ b/internal/services/container/namespace.go @@ -9,6 +9,7 @@ import ( container "github.com/scaleway/scaleway-sdk-go/api/container/v1beta1" registrySDK "github.com/scaleway/scaleway-sdk-go/api/registry/v1" "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" @@ -73,7 +74,9 @@ func ResourceNamespace() *schema.Resource { Type: schema.TypeString, ValidateFunc: validation.StringLenBetween(0, 1000), }, - ValidateDiagFunc: validation.MapKeyLenBetween(0, 100), + ValidateDiagFunc: validation.MapKeyLenBetween(0, 100), + DiffSuppressFunc: dsf.CompareArgon2idPasswordAndHash, + DiffSuppressOnRefresh: true, }, "registry_endpoint": { Type: schema.TypeString, @@ -160,6 +163,7 @@ func ResourceContainerNamespaceRead(ctx context.Context, d *schema.ResourceData, _ = d.Set("region", ns.Region) _ = d.Set("registry_endpoint", ns.RegistryEndpoint) _ = d.Set("registry_namespace_id", ns.RegistryNamespaceID) + _ = d.Set("secret_environment_variables", flattenContainerSecrets(ns.SecretEnvironmentVariables)) return nil } @@ -192,29 +196,9 @@ func ResourceContainerNamespaceUpdate(ctx context.Context, d *schema.ResourceDat req.EnvironmentVariables = types.ExpandMapPtrStringString(d.Get("environment_variables")) } - if d.HasChange("secret_environment_variables") { - oldSecretsRaw, newSecretsRaw := d.GetChange("secret_environment_variables") - - oldSecretsMap := convertToMapStringInterface(oldSecretsRaw) - newSecretsMap := convertToMapStringInterface(newSecretsRaw) - - oldSecrets := expandContainerSecrets(oldSecretsMap) - newSecrets := expandContainerSecrets(newSecretsMap) - - deletedSecrets := make([]*container.Secret, 0) - - for _, oldSecret := range oldSecrets { - if _, exists := newSecretsMap[oldSecret.Key]; !exists { - deletedSecrets = append(deletedSecrets, &container.Secret{ - Key: oldSecret.Key, - Value: nil, - }) - } - } - - deletedSecrets = append(deletedSecrets, newSecrets...) - - req.SecretEnvironmentVariables = deletedSecrets + if d.HasChanges("secret_environment_variables") { + oldEnv, newEnv := d.GetChange("secret_environment_variables") + req.SecretEnvironmentVariables = filterSecretEnvsToPatch(expandContainerSecrets(oldEnv), expandContainerSecrets(newEnv)) } if _, err := api.UpdateNamespace(req, scw.WithContext(ctx)); err != nil { diff --git a/internal/services/container/namespace_test.go b/internal/services/container/namespace_test.go index bb8e099c38..65f6c4cc1b 100644 --- a/internal/services/container/namespace_test.go +++ b/internal/services/container/namespace_test.go @@ -67,7 +67,7 @@ func TestAccNamespace_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_container_namespace.main", "description", ""), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "name", "test-cr-ns-01"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "environment_variables.test", "test"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.test_secret", "test_secret"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.test_secret", "test_secret"), acctest.CheckResourceAttrUUID("scaleway_container_namespace.main", "id"), ), @@ -90,7 +90,7 @@ func TestAccNamespace_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_container_namespace.main", "description", ""), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "name", "test-cr-ns-01"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "environment_variables.test", "test"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.test_secret", "test_secret"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.test_secret", "test_secret"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "tags.#", "2"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "tags.0", "tag1"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "tags.1", "tag2"), @@ -127,7 +127,7 @@ func TestAccNamespace_Basic(t *testing.T) { isNamespacePresent(tt, "scaleway_container_namespace.main"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "name", "tf-env-test"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "environment_variables.test", "test"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.test_secret", "test_secret"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.test_secret", "test_secret"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "tags.#", "0"), acctest.CheckResourceAttrUUID("scaleway_container_namespace.main", "id"), ), @@ -148,7 +148,7 @@ func TestAccNamespace_Basic(t *testing.T) { isNamespacePresent(tt, "scaleway_container_namespace.main"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "name", "tf-env-test"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "environment_variables.foo", "bar"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.foo_secret", "bar_secret"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.foo_secret", "bar_secret"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "tags.#", "0"), acctest.CheckResourceAttrUUID("scaleway_container_namespace.main", "id"), ), @@ -189,24 +189,14 @@ func TestAccNamespace_SecretManagement(t *testing.T) { name = "test-secret-ns" secret_environment_variables = { "SECRET_1" = "value1" + "SECRET_2" = "value2" } } `, Check: resource.ComposeTestCheckFunc( isNamespacePresent(tt, "scaleway_container_namespace.main"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.SECRET_1", "value1"), - ), - }, - { - Config: ` - resource scaleway_container_namespace main { - name = "test-secret-ns" - secret_environment_variables = {} - } - `, - Check: resource.ComposeTestCheckFunc( - isNamespacePresent(tt, "scaleway_container_namespace.main"), - resource.TestCheckNoResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.SECRET_1"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.SECRET_1", "value1"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.SECRET_2", "value2"), ), }, { @@ -215,14 +205,14 @@ func TestAccNamespace_SecretManagement(t *testing.T) { name = "test-secret-ns" secret_environment_variables = { "SECRET_1" = "value1" - "SECRET_2" = "value2" + "SECRET_2" = "updated_value2" } } `, Check: resource.ComposeTestCheckFunc( isNamespacePresent(tt, "scaleway_container_namespace.main"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.SECRET_1", "value1"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.SECRET_2", "value2"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.SECRET_1", "value1"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.SECRET_2", "updated_value2"), ), }, { @@ -230,29 +220,16 @@ func TestAccNamespace_SecretManagement(t *testing.T) { resource scaleway_container_namespace main { name = "test-secret-ns" secret_environment_variables = { - "SECRET_2" = "value2" + "SECRET_KEY_1" = "value1" + "SECRET_2" = "updated_value2" } } `, Check: resource.ComposeTestCheckFunc( isNamespacePresent(tt, "scaleway_container_namespace.main"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.SECRET_KEY_1", "value1"), resource.TestCheckNoResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.SECRET_1"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.SECRET_2", "value2"), - ), - }, - { - Config: ` - resource scaleway_container_namespace main { - name = "test-secret-ns" - secret_environment_variables = { - "SECRET_3" = "value3" - } - } - `, - Check: resource.ComposeTestCheckFunc( - isNamespacePresent(tt, "scaleway_container_namespace.main"), - resource.TestCheckNoResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.SECRET_2"), - resource.TestCheckResourceAttr("scaleway_container_namespace.main", "secret_environment_variables.SECRET_3", "value3"), + passwordMatchHash("scaleway_container_namespace.main", "secret_environment_variables.SECRET_2", "updated_value2"), ), }, }, diff --git a/internal/services/container/testdata/data-source-namespace-basic.cassette.yaml b/internal/services/container/testdata/data-source-namespace-basic.cassette.yaml index a41d44bf4c..9a45b76ed3 100644 --- a/internal/services/container/testdata/data-source-namespace-basic.cassette.yaml +++ b/internal/services/container/testdata/data-source-namespace-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-cr-data","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"test-cr-data","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231055Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:38:35.801231055Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819287Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:13.596819287Z"}' headers: Content-Length: - - "464" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:35 GMT + - Mon, 28 Apr 2025 09:37:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1982b310-bd54-476d-ae62-fcedbf61cad0 + - 72ab1259-f47c-4813-8de5-29ebd06debb5 status: 200 OK code: 200 - duration: 314.025791ms + duration: 784.061042ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 458 + content_length: 472 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:38:35.801231Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:13.596819Z"}' headers: Content-Length: - - "458" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:35 GMT + - Mon, 28 Apr 2025 09:37:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eae9715e-0e64-46cd-a2e8-ba826838a05a + - d225f80e-30b2-4157-9459-d454a3d826cb status: 200 OK code: 200 - duration: 72.119209ms + duration: 86.905167ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -125,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 472 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:18.659397Z"}' headers: Content-Length: - - "537" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:40 GMT + - Mon, 28 Apr 2025 09:37:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4ac5c7c-e538-4dd4-bc6c-52ae0d34e064 + - c8daefb6-efd8-4473-8018-32d774ddc2ac status: 200 OK code: 200 - duration: 60.8215ms + duration: 42.799375ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -174,18 +174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:41 GMT + - Mon, 28 Apr 2025 09:37:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66faa9e7-7eb8-4fdc-99ac-ab7e30b9c6d5 + - 436d1ff6-3941-42d4-a855-ba770d2a97e4 status: 200 OK code: 200 - duration: 73.220834ms + duration: 49.932917ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -223,18 +223,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:41 GMT + - Mon, 28 Apr 2025 09:37:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01cd269e-7945-4ca1-b52d-1a51c326c37b + - df68ebab-c822-4461-a51c-be82ac1aec75 status: 200 OK code: 200 - duration: 71.908792ms + duration: 46.812166ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -272,18 +272,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 551 uncompressed: false - body: '{"namespaces":[{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}],"total_count":1}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "570" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:41 GMT + - Mon, 28 Apr 2025 09:37:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1ac00db-3a81-4296-b952-40804a1b282c + - 2fb29026-308a-4676-9553-075ce06beccc status: 200 OK code: 200 - duration: 139.31025ms + duration: 43.762875ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -321,18 +321,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"namespaces":[{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}],"total_count":1}' headers: Content-Length: - - "537" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:41 GMT + - Mon, 28 Apr 2025 09:37:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 001c53f6-95a8-48ef-a21a-5211f4290210 + - a345e927-9907-48ac-ad48-392b6971996a status: 200 OK code: 200 - duration: 66.374083ms + duration: 49.74225ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -370,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:41 GMT + - Mon, 28 Apr 2025 09:37:23 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bdf1993-a176-4fd2-a47e-ba97bdb65672 + - 2754adf6-0626-428b-98ed-9ce925fd802f status: 200 OK code: 200 - duration: 451.98675ms + duration: 41.405667ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -419,18 +419,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f131268-a4fa-4c97-bab8-06553127f18b + - 6c46b0cd-ce40-4181-bfa9-9ff153924ea8 status: 200 OK code: 200 - duration: 68.441708ms + duration: 46.232875ms - id: 9 request: proto: HTTP/1.1 @@ -459,8 +459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -468,18 +468,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 551 uncompressed: false - body: '{"namespaces":[{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}],"total_count":1}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "570" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1a58be9-16d3-4c81-ad80-9e4da8d9e39a + - bd1938b4-71cc-4d8e-a909-eca714215a06 status: 200 OK code: 200 - duration: 124.669792ms + duration: 44.104542ms - id: 10 request: proto: HTTP/1.1 @@ -508,8 +508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -517,18 +517,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"namespaces":[{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}],"total_count":1}' headers: Content-Length: - - "537" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09f50b5a-d517-4864-addc-ca1a428ec693 + - 276aa844-5a2c-4618-9e70-4830a1eb7ddc status: 200 OK code: 200 - duration: 68.808417ms + duration: 52.745584ms - id: 11 request: proto: HTTP/1.1 @@ -557,8 +557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -566,18 +566,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a796be31-0ade-4ca9-bc5d-5026ca084ac2 + - 3ffca4b7-ee41-476c-871c-95a9299dc02e status: 200 OK code: 200 - duration: 55.181542ms + duration: 41.650459ms - id: 12 request: proto: HTTP/1.1 @@ -606,8 +606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -615,18 +615,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ab465da-d34e-4db0-916f-5fdcd5943199 + - 7b7c3d37-88ab-4172-8255-e177798eea94 status: 200 OK code: 200 - duration: 56.26475ms + duration: 46.352167ms - id: 13 request: proto: HTTP/1.1 @@ -655,8 +655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -664,18 +664,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 551 uncompressed: false - body: '{"namespaces":[{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}],"total_count":1}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "570" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b30fb6bc-1123-4990-bae2-9ec90d25e7f9 + - 63ba603b-2427-4178-ae2e-962d8a1e5b13 status: 200 OK code: 200 - duration: 119.502292ms + duration: 48.075875ms - id: 14 request: proto: HTTP/1.1 @@ -704,8 +704,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -713,18 +713,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"namespaces":[{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}],"total_count":1}' headers: Content-Length: - - "537" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d0f9066-2f55-4b92-bd06-d6efce514e47 + - 254cea2b-2c05-4ef6-be11-07c28985fdaf status: 200 OK code: 200 - duration: 70.295834ms + duration: 48.04875ms - id: 15 request: proto: HTTP/1.1 @@ -753,8 +753,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -762,18 +762,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:43 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9d38622-6390-4f1a-822a-efd6a7892b7d + - 74b56a51-92f7-4f0d-9bad-539ad1c42465 status: 200 OK code: 200 - duration: 83.833167ms + duration: 41.637ms - id: 16 request: proto: HTTP/1.1 @@ -802,8 +802,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -811,18 +811,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 551 uncompressed: false - body: '{"namespaces":[{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}],"total_count":1}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "570" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:43 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdb7eb6a-f6b8-4fa7-921f-d2ca904e4f0b + - ed19f307-4586-45aa-a9fd-54d69a6a02e7 status: 200 OK code: 200 - duration: 112.952958ms + duration: 40.696667ms - id: 17 request: proto: HTTP/1.1 @@ -851,8 +851,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -860,18 +860,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"namespaces":[{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}],"total_count":1}' headers: Content-Length: - - "537" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:43 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d033e3d-5e40-4949-9e6f-af1a2037ea60 + - 1a5fc430-ee24-4ee6-a07d-9aefc7f9db2e status: 200 OK code: 200 - duration: 85.976125ms + duration: 47.553375ms - id: 18 request: proto: HTTP/1.1 @@ -900,8 +900,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -909,18 +909,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.181750Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:43 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 947620d3-53e9-4b13-bf0e-dc805260f0a2 + - f5dd1cb3-bc24-498a-9d8c-1dab57d07e49 status: 200 OK code: 200 - duration: 86.410375ms + duration: 37.872667ms - id: 19 request: proto: HTTP/1.1 @@ -949,27 +949,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:38:44.010381424Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.657443Z"}' headers: Content-Length: - - "543" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:44 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1cf94a2-8dd0-4617-9013-36a2cd1254ff + - 791232c7-ce00-42d0-be1b-cea28b580a92 status: 200 OK code: 200 - duration: 177.575208ms + duration: 40.4345ms - id: 20 request: proto: HTTP/1.1 @@ -998,27 +998,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 557 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:38:44.010381Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:24.868418932Z"}' headers: Content-Length: - - "540" + - "557" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:44 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e662d57-5651-44c9-8a4e-52685ade74ba + - 5b52f83f-52c4-4e36-a6c3-9e7a598475c9 status: 200 OK code: 200 - duration: 59.790916ms + duration: 149.005667ms - id: 21 request: proto: HTTP/1.1 @@ -1047,8 +1047,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -1056,18 +1056,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 554 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801231Z","description":"","environment_variables":{},"error_message":null,"id":"07aa943b-6e0f-439c-b19b-5a74420b1c7f","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatazhd0vnkp","registry_namespace_id":"c2ab0d2a-5ad9-47e7-9b80-6eb3252e5278","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:38:44.010381Z"}' + body: '{"created_at":"2025-04-28T09:37:13.596819Z","description":"","environment_variables":{},"error_message":null,"id":"2eb13c8a-1cde-4813-843a-e9293fee7406","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatatmswvrye","registry_namespace_id":"3e3d7531-a0f9-450a-ad58-369f3cdf094f","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:24.868419Z"}' headers: Content-Length: - - "540" + - "554" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:49 GMT + - Mon, 28 Apr 2025 09:37:25 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1077,10 +1077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bc7480e-d16c-47f5-ab03-319394075c41 + - 3f4fda6b-3742-4f58-ade2-d41126644dab status: 200 OK code: 200 - duration: 70.79675ms + duration: 37.28ms - id: 22 request: proto: HTTP/1.1 @@ -1096,8 +1096,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: GET response: proto: HTTP/2.0 @@ -1116,7 +1116,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:54 GMT + - Mon, 28 Apr 2025 09:37:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1126,10 +1126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 628a9135-6cb5-4c7e-994b-b2398962be7a + - 8f031c5b-7298-4041-933d-4a5ea143a11a status: 404 Not Found code: 404 - duration: 56.749666ms + duration: 28.999541ms - id: 23 request: proto: HTTP/1.1 @@ -1145,8 +1145,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: DELETE response: proto: HTTP/2.0 @@ -1165,7 +1165,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:54 GMT + - Mon, 28 Apr 2025 09:37:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1175,10 +1175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e92c29fe-a98b-4c42-a080-87568daae7af + - 0e767116-27d9-4068-b2fc-9c19ebcd78a4 status: 404 Not Found code: 404 - duration: 40.539ms + duration: 23.206959ms - id: 24 request: proto: HTTP/1.1 @@ -1194,8 +1194,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: DELETE response: proto: HTTP/2.0 @@ -1214,7 +1214,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:54 GMT + - Mon, 28 Apr 2025 09:37:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1224,10 +1224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb4f8c23-97e9-4509-bbf1-83f5369f9ea2 + - be051b79-315e-46e0-91a3-0b643db1b4d0 status: 404 Not Found code: 404 - duration: 26.139125ms + duration: 22.8415ms - id: 25 request: proto: HTTP/1.1 @@ -1243,8 +1243,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/07aa943b-6e0f-439c-b19b-5a74420b1c7f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2eb13c8a-1cde-4813-843a-e9293fee7406 method: DELETE response: proto: HTTP/2.0 @@ -1263,7 +1263,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:54 GMT + - Mon, 28 Apr 2025 09:37:30 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -1273,7 +1273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 105c9145-d128-4520-9430-fdd0afab09de + - 3cf80fb0-8216-45a2-ae63-7fbe23392cc9 status: 404 Not Found code: 404 - duration: 36.08875ms + duration: 24.186416ms diff --git a/internal/services/container/testdata/namespace-basic.cassette.yaml b/internal/services/container/testdata/namespace-basic.cassette.yaml index d09c68fcf9..883656bfc5 100644 --- a/internal/services/container/testdata/namespace-basic.cassette.yaml +++ b/internal/services/container/testdata/namespace-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-cr-ns-01","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"test-cr-ns-01","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 465 + content_length: 479 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249013Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:37:51.165249013Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753352673Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:13.753352673Z"}' headers: Content-Length: - - "465" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:37:51 GMT + - Mon, 28 Apr 2025 09:37:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b57dfde-e5e5-40eb-afd8-15462524d1f9 + - f6f49077-4a2d-47e0-8883-f12b6cf7749a status: 200 OK code: 200 - duration: 1.12923575s + duration: 940.125833ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:37:51.165249Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:13.753353Z"}' headers: Content-Length: - - "459" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:37:51 GMT + - Mon, 28 Apr 2025 09:37:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 530dcbe0-691b-4da5-b3fc-067f864be5b1 + - 55fdef32-82ed-4357-90ff-e4531709543c status: 200 OK code: 200 - duration: 83.9015ms + duration: 48.92875ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:37:51.165249Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.247914Z"}' headers: Content-Length: - - "459" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:37:56 GMT + - Mon, 28 Apr 2025 09:37:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c36b501d-2d13-45ac-a4b8-b15aead51512 + - a19a29e7-a481-4dd5-be11-489ac261e09a status: 200 OK code: 200 - duration: 88.496584ms + duration: 44.407208ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:37:51.165249Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.247914Z"}' headers: Content-Length: - - "459" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:01 GMT + - Mon, 28 Apr 2025 09:37:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c61fecb1-2340-45a1-92c5-1971f586dc1a + - ffc49514-b5db-40ad-9d69-613b81b75606 status: 200 OK code: 200 - duration: 71.780917ms + duration: 42.209708ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:37:51.165249Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.247914Z"}' headers: Content-Length: - - "459" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:06 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11347f28-bde5-49fa-ac23-f4ddef134b40 + - 538bf43a-bb40-4c97-bca6-7ecc116c27b2 status: 200 OK code: 200 - duration: 79.951333ms + duration: 48.126708ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:38:10.038533Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.247914Z"}' headers: Content-Length: - - "540" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:11 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5608c31-b33e-4d78-9125-b0d66f18f209 + - 212af531-cc97-4553-a63c-a465d28bd731 status: 200 OK code: 200 - duration: 96.842166ms + duration: 46.133666ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:38:10.038533Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.247914Z"}' headers: Content-Length: - - "540" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:16 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c7ca010-7c1c-4e84-a1f2-c1657f86d62a + - f632b3c8-978b-4378-a758-9cf785e67ba5 status: 200 OK code: 200 - duration: 79.175208ms + duration: 40.675667ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:19.460778Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.247914Z"}' headers: Content-Length: - - "538" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:21 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,48 +391,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 908a4af8-f307-4d9d-80d5-358ebea7cba8 + - c1ace177-2738-41b8-97c9-04781f7b721c status: 200 OK code: 200 - duration: 83.393458ms + duration: 33.972625ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 81 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"description":"test container namespace 01","secret_environment_variables":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 582 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:19.460778Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.595200051Z"}' headers: Content-Length: - - "538" + - "582" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:21 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d8c6239-a3d6-4f60-878f-f94f0abfd4f5 + - 75e691f8-62c1-4919-bea7-4c628d29a6d8 status: 200 OK code: 200 - duration: 87.416ms + duration: 68.403875ms - id: 9 request: proto: HTTP/1.1 @@ -459,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -468,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:19.460778Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.595200Z"}' headers: Content-Length: - - "538" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:22 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f48f001e-437d-440e-9ade-8ee6a105974a + - 4c442b16-6283-4879-9df5-7ba86ddd93c2 status: 200 OK code: 200 - duration: 89.479958ms + duration: 38.919834ms - id: 10 request: proto: HTTP/1.1 @@ -508,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -517,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:19.460778Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.595200Z"}' headers: Content-Length: - - "538" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:23 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ead47e4e-d821-4fa7-9112-2bf82936ed96 + - f0a7fcd3-9666-4903-bb62-40cfc94751a3 status: 200 OK code: 200 - duration: 104.902959ms + duration: 40.549709ms - id: 11 request: proto: HTTP/1.1 @@ -557,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -566,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:19.460778Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.595200Z"}' headers: Content-Length: - - "538" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:23 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba26ca22-867a-47fe-b54d-d4e57c38b6d1 + - e6432589-07ba-4d2d-8eb5-3f5c8f8a2039 status: 200 OK code: 200 - duration: 81.372833ms + duration: 122.280834ms - id: 12 request: proto: HTTP/1.1 @@ -606,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -615,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:19.460778Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.595200Z"}' headers: Content-Length: - - "538" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:24 GMT + - Mon, 28 Apr 2025 09:37:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,50 +638,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a32e1621-a1e4-42aa-a589-a576966c58b5 + - e4708dea-ce08-447d-9ace-c5cd3baf6858 status: 200 OK code: 200 - duration: 117.54475ms + duration: 43.126584ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 81 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"test container namespace 01","secret_environment_variables":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:24.966563306Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:19.595200Z"}' headers: Content-Length: - - "568" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:24 GMT + - Mon, 28 Apr 2025 09:37:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,48 +687,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e6418f3-c94c-46d0-8bf2-0461bcdb7378 + - 8b4be421-2d09-4720-af44-5822c57ea879 status: 200 OK code: 200 - duration: 201.03325ms + duration: 40.036834ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 135 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"environment_variables":{"test":"test"},"description":"","secret_environment_variables":[{"key":"test_secret","value":"test_secret"}]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:24.966563Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:21.069278059Z"}' headers: Content-Length: - - "565" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:25 GMT + - Mon, 28 Apr 2025 09:37:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bff62a5-2515-442a-85ee-14eefe47f789 + - a1d96a53-0fbf-44e6-bb6e-19c56833c60d status: 200 OK code: 200 - duration: 84.734792ms + duration: 698.286791ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -764,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 704 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:24.966563Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:21.069278Z"}' headers: Content-Length: - - "565" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:25 GMT + - Mon, 28 Apr 2025 09:37:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b982c2e-f6fb-42c7-bcec-23367d637dfc + - d5de824e-ffd4-41e4-a9cc-e369241d9b58 status: 200 OK code: 200 - duration: 87.522083ms + duration: 128.739792ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -813,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:24.966563Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.417760Z"}' headers: Content-Length: - - "565" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:26 GMT + - Mon, 28 Apr 2025 09:37:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 372a6de0-3fe4-4ade-8c07-4bd7eb1fe7a8 + - 793d9a52-9216-4a62-a999-23885afaedfb status: 200 OK code: 200 - duration: 69.024041ms + duration: 46.950208ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -862,20 +864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:24.966563Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.417760Z"}' headers: Content-Length: - - "565" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:27 GMT + - Mon, 28 Apr 2025 09:37:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 366b1f77-b9fd-431f-b84f-a8f1639f2b00 + - d1662dfd-d632-43ca-92b7-d19c5f03a4d0 status: 200 OK code: 200 - duration: 105.39025ms + duration: 44.639375ms - id: 18 request: proto: HTTP/1.1 @@ -902,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -911,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:24.966563Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.417760Z"}' headers: Content-Length: - - "565" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:28 GMT + - Mon, 28 Apr 2025 09:37:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,50 +934,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f51208b-80b1-4f2b-b2d7-14f2bf8ea739 + - 7a65ac91-7732-4f20-894d-5462abc565e4 status: 200 OK code: 200 - duration: 202.082541ms + duration: 46.469667ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 135 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"environment_variables":{"test":"test"},"description":"","secret_environment_variables":[{"key":"test_secret","value":"test_secret"}]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-03-20T15:38:28.682944385Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.417760Z"}' headers: Content-Length: - - "692" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:28 GMT + - Mon, 28 Apr 2025 09:37:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a953e22c-8f12-4fb7-a1cd-d74d08a2e71d + - 3e2339e6-9849-4ed8-93c8-532437dadaa5 status: 200 OK code: 200 - duration: 619.82925ms + duration: 39.5075ms - id: 20 request: proto: HTTP/1.1 @@ -1002,8 +1002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1011,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 689 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-03-20T15:38:28.682944Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.417760Z"}' headers: Content-Length: - - "689" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:28 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,48 +1032,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 379b8a7d-a971-4026-83b6-935ef0e9c454 + - de736c76-3b6b-4d9f-884b-5654960299ed status: 200 OK code: 200 - duration: 137.57225ms + duration: 41.441792ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 60 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"secret_environment_variables":null,"tags":["tag1","tag2"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 719 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:29.022085Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:27.187070800Z"}' headers: Content-Length: - - "687" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:33 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 839bad18-cb8f-4e1f-bfe3-7838d49bef13 + - 4ce2019a-c52b-4956-b5ab-1b283e9b2ec9 status: 200 OK code: 200 - duration: 72.597458ms + duration: 60.668791ms - id: 22 request: proto: HTTP/1.1 @@ -1100,8 +1102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1109,20 +1111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:29.022085Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:27.187071Z"}' headers: Content-Length: - - "687" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:34 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c98e0b43-39f4-4d74-9e1a-1ac3caf2183d + - 367abc25-e67a-4026-884e-828e3552149b status: 200 OK code: 200 - duration: 97.316333ms + duration: 41.673708ms - id: 23 request: proto: HTTP/1.1 @@ -1149,8 +1151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1158,20 +1160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:29.022085Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:27.187071Z"}' headers: Content-Length: - - "687" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:35 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,10 +1181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32a91382-5f73-421d-9862-7696a13179b7 + - 3103c2da-e99a-4549-91e4-d01a5bd11d6c status: 200 OK code: 200 - duration: 81.81625ms + duration: 46.42325ms - id: 24 request: proto: HTTP/1.1 @@ -1198,8 +1200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1207,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:29.022085Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:27.187071Z"}' headers: Content-Length: - - "687" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:35 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab52896e-6ba6-4e7f-b40b-71cfcce7246e + - cdbc0871-c686-4d4d-a8da-87c4c05beb40 status: 200 OK code: 200 - duration: 91.596375ms + duration: 64.640125ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1256,20 +1258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:29.022085Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:27.187071Z"}' headers: Content-Length: - - "687" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:36 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,50 +1279,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28d98270-bf55-42ec-99f7-19db28950ace + - ebe771e9-6ecc-44f6-a0f5-29d53b55f53e status: 200 OK code: 200 - duration: 78.730708ms + duration: 36.237917ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 60 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"secret_environment_variables":null,"tags":["tag1","tag2"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:38:36.908539838Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$KRi5fL1eXTZH0eN3A3+WSQ$Rw4ck/IGCoWLzol+x/oGWiffRVIfTWZP7H3kX3Kc9Dc","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:27.187071Z"}' headers: Content-Length: - - "703" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:36 GMT + - Mon, 28 Apr 2025 09:37:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,48 +1328,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68099c67-60be-4224-8625-fc856a844601 + - 1ec0c9bd-d1b1-46cb-9668-563991f1a637 status: 200 OK code: 200 - duration: 124.781625ms + duration: 42.183042ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 106 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"environment_variables":{},"secret_environment_variables":[{"key":"test_secret","value":null}],"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 557 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:38:36.908540Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:28.235724290Z"}' headers: Content-Length: - - "700" + - "557" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:37 GMT + - Mon, 28 Apr 2025 09:37:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,10 +1379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0db5c8c-2161-4cfb-a197-d83886ca1371 + - ac16afb5-2be4-464a-bcd2-3ba2a081305c status: 200 OK code: 200 - duration: 73.176209ms + duration: 63.553125ms - id: 28 request: proto: HTTP/1.1 @@ -1396,8 +1398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1405,20 +1407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 554 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:38:36.908540Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:28.235724Z"}' headers: Content-Length: - - "700" + - "554" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:37 GMT + - Mon, 28 Apr 2025 09:37:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,10 +1428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a08852e-729c-4652-b1a7-9f9a94d59496 + - f023fad2-723c-4b53-83d9-f660164d1da9 status: 200 OK code: 200 - duration: 77.83975ms + duration: 98.281166ms - id: 29 request: proto: HTTP/1.1 @@ -1445,8 +1447,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1454,20 +1456,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:38:36.908540Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.662790Z"}' headers: Content-Length: - - "700" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:38 GMT + - Mon, 28 Apr 2025 09:37:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c67c052c-044a-482d-a840-16d3a2f922ff + - da9c5b87-a600-40d7-96db-57bc47280256 status: 200 OK code: 200 - duration: 84.865042ms + duration: 34.984125ms - id: 30 request: proto: HTTP/1.1 @@ -1494,8 +1496,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1503,20 +1505,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:38:36.908540Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.662790Z"}' headers: Content-Length: - - "700" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:38 GMT + - Mon, 28 Apr 2025 09:37:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd8f3ec9-2026-42da-9d57-90dbf702bf03 + - a491c004-4d57-4f79-9ba6-98b07fc62d24 status: 200 OK code: 200 - duration: 79.796584ms + duration: 45.157708ms - id: 31 request: proto: HTTP/1.1 @@ -1543,8 +1545,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1552,20 +1554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$+mlX2Ly9Se9vhxhONc1asA$YJorbZSbzb7Ff7osaVxOFtqwgFA2bU33JjoNXgaweiU","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:38:36.908540Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.662790Z"}' headers: Content-Length: - - "700" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:39 GMT + - Mon, 28 Apr 2025 09:37:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,50 +1575,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbfc3a08-6462-4856-84f3-50ca1611be43 + - 2c34046e-0dfb-414b-b0d0-49ed209645ee status: 200 OK code: 200 - duration: 78.752166ms + duration: 35.700833ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"environment_variables":{},"secret_environment_variables":[{"key":"test_secret","value":null}],"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:38:39.922248647Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.662790Z"}' headers: Content-Length: - - "543" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:39 GMT + - Mon, 28 Apr 2025 09:37:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3d0569b-407d-44e0-b5a4-9e829773411f + - 4d246ada-c85d-4cc7-8d79-210feef65085 status: 200 OK code: 200 - duration: 87.211292ms + duration: 44.099333ms - id: 33 request: proto: HTTP/1.1 @@ -1643,8 +1643,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1652,20 +1652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-20T15:38:39.922249Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.662790Z"}' headers: Content-Length: - - "540" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:40 GMT + - Mon, 28 Apr 2025 09:37:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18341178-30cf-47f4-8357-7584858ebfe3 + - 7f2bc39b-7847-45e4-8df0-9d5339b0ff2f status: 200 OK code: 200 - duration: 114.187125ms + duration: 38.279584ms - id: 34 request: proto: HTTP/1.1 @@ -1692,29 +1692,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 558 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:40.294601Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:34.159446628Z"}' headers: Content-Length: - - "538" + - "558" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:45 GMT + - Mon, 28 Apr 2025 09:37:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1722,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adf728ae-c517-492d-8787-134f2b7bb734 + - a08aebcf-aa87-444b-a57b-5c8efc6a744c status: 200 OK code: 200 - duration: 79.861041ms + duration: 139.688708ms - id: 35 request: proto: HTTP/1.1 @@ -1741,8 +1741,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1750,20 +1750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 555 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:40.294601Z"}' + body: '{"created_at":"2025-04-28T09:37:13.753353Z","description":"","environment_variables":{},"error_message":null,"id":"739ec6ae-53ee-40dd-949f-67bb90f5bceb","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01acrymz2v","registry_namespace_id":"82c49ce2-a6bf-4518-84b6-6ff9ad138bca","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:34.159447Z"}' headers: Content-Length: - - "538" + - "555" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:45 GMT + - Mon, 28 Apr 2025 09:37:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,10 +1771,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7eec7942-af3e-4800-b1d0-55a822b67f56 + - 2266fdb7-3150-41f4-821b-4c89fbfe3a26 status: 200 OK code: 200 - duration: 86.499792ms + duration: 42.500083ms - id: 36 request: proto: HTTP/1.1 @@ -1790,8 +1790,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/739ec6ae-53ee-40dd-949f-67bb90f5bceb method: GET response: proto: HTTP/2.0 @@ -1799,20 +1799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 37 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:40.294601Z"}' + body: '{"message":"Namespace was not found"}' headers: Content-Length: - - "538" + - "37" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:46 GMT + - Mon, 28 Apr 2025 09:37:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,48 +1820,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 468f4ba9-c75b-4aec-ad17-5e971378afc7 - status: 200 OK - code: 200 - duration: 109.841125ms + - f7f0f30a-97fe-4dd6-bf36-642804578463 + status: 404 Not Found + code: 404 + duration: 27.829209ms - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 203 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-env-test","environment_variables":{"test":"test"},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[{"key":"test_secret","value":"test_secret"}],"tags":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 627 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:40.294601Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730989705Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$RbysG7vX6lPMWt+xB4q1gw$uwtwWV2BljRrn2CAsyExqOz0rBKOlPbJEKEeb0pJS1Y","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:39.730989705Z"}' headers: Content-Length: - - "538" + - "627" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:46 GMT + - Mon, 28 Apr 2025 09:37:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1869,10 +1871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6332e92f-f3e8-4227-b889-7cbb7d568f7c + - c5959480-abbe-419e-8194-2b1c534ef24f status: 200 OK code: 200 - duration: 78.783375ms + duration: 416.594209ms - id: 38 request: proto: HTTP/1.1 @@ -1888,8 +1890,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -1897,20 +1899,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 621 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:40.294601Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$RbysG7vX6lPMWt+xB4q1gw$uwtwWV2BljRrn2CAsyExqOz0rBKOlPbJEKEeb0pJS1Y","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:39.730990Z"}' headers: Content-Length: - - "538" + - "621" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:47 GMT + - Mon, 28 Apr 2025 09:37:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1918,10 +1920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c8fa22c-040a-4068-827d-41f9adbb3154 + - 9da9044d-51b5-4362-aa7b-f5162bbe2ee9 status: 200 OK code: 200 - duration: 81.497291ms + duration: 44.407084ms - id: 39 request: proto: HTTP/1.1 @@ -1937,29 +1939,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-03-20T15:38:47.942778250Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$RbysG7vX6lPMWt+xB4q1gw$uwtwWV2BljRrn2CAsyExqOz0rBKOlPbJEKEeb0pJS1Y","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:41.144897Z"}' headers: Content-Length: - - "544" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:48 GMT + - Mon, 28 Apr 2025 09:37:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1967,10 +1969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6764d2f-7f37-455d-a0c6-bea4327c039b + - 6ca472dc-75ed-4d12-924f-cf15a1469295 status: 200 OK code: 200 - duration: 200.120625ms + duration: 41.230083ms - id: 40 request: proto: HTTP/1.1 @@ -1986,8 +1988,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -1995,20 +1997,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 541 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-03-20T15:37:51.165249Z","description":"","environment_variables":{},"error_message":null,"id":"d3ea43f7-031c-4f39-b9fe-e77d4f88ed19","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01oyh0b39b","registry_namespace_id":"e8bc8146-8f2c-4933-8965-dfa08c6249df","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-03-20T15:38:47.942778Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$RbysG7vX6lPMWt+xB4q1gw$uwtwWV2BljRrn2CAsyExqOz0rBKOlPbJEKEeb0pJS1Y","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:41.144897Z"}' headers: Content-Length: - - "541" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:48 GMT + - Mon, 28 Apr 2025 09:37:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2016,10 +2018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78f7d966-dabb-49ee-99a6-1e2ca5393411 + - 26e1343a-5c95-4b2d-92b7-3bb0962eac28 status: 200 OK code: 200 - duration: 92.203125ms + duration: 50.429375ms - id: 41 request: proto: HTTP/1.1 @@ -2035,8 +2037,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/d3ea43f7-031c-4f39-b9fe-e77d4f88ed19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2044,20 +2046,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 37 + content_length: 699 uncompressed: false - body: '{"message":"Namespace was not found"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$RbysG7vX6lPMWt+xB4q1gw$uwtwWV2BljRrn2CAsyExqOz0rBKOlPbJEKEeb0pJS1Y","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:41.144897Z"}' headers: Content-Length: - - "37" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:56 GMT + - Mon, 28 Apr 2025 09:37:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2065,50 +2067,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8d7a380-6290-4208-a973-08fbca6c5d4e - status: 404 Not Found - code: 404 - duration: 3.070887458s + - ad0015eb-253b-4e32-a259-23467ca5f35e + status: 200 OK + code: 200 + duration: 41.390625ms - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 203 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-env-test","environment_variables":{"test":"test"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[{"key":"test_secret","value":"test_secret"}],"tags":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 612 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984647929Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$PUAwJF5WrXcgFi47ZMvPew$jBbdALk3thAXyt50WNVVvUtJ5R0jW/QCedkKVneFWn0","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-03-20T15:38:56.984647929Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$RbysG7vX6lPMWt+xB4q1gw$uwtwWV2BljRrn2CAsyExqOz0rBKOlPbJEKEeb0pJS1Y","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:41.144897Z"}' headers: Content-Length: - - "612" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:56 GMT + - Mon, 28 Apr 2025 09:37:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2116,10 +2116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24a26cd8-d6c6-4c80-ac8b-c2d9ceec6046 + - af2d2e74-9c97-438e-a4b0-caa84eb22bcd status: 200 OK code: 200 - duration: 754.89ms + duration: 58.445792ms - id: 43 request: proto: HTTP/1.1 @@ -2135,8 +2135,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2144,20 +2144,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 606 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$PUAwJF5WrXcgFi47ZMvPew$jBbdALk3thAXyt50WNVVvUtJ5R0jW/QCedkKVneFWn0","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-03-20T15:38:56.984648Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$RbysG7vX6lPMWt+xB4q1gw$uwtwWV2BljRrn2CAsyExqOz0rBKOlPbJEKEeb0pJS1Y","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:41.144897Z"}' headers: Content-Length: - - "606" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:38:57 GMT + - Mon, 28 Apr 2025 09:37:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2165,10 +2165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 040bef7c-359b-4636-9a5b-d9bc7a315ab6 + - 57e2a45c-425c-440d-afeb-a75b1bccf1de status: 200 OK code: 200 - duration: 95.644041ms + duration: 42.731459ms - id: 44 request: proto: HTTP/1.1 @@ -2184,8 +2184,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2193,20 +2193,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$PUAwJF5WrXcgFi47ZMvPew$jBbdALk3thAXyt50WNVVvUtJ5R0jW/QCedkKVneFWn0","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:58.598993Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$RbysG7vX6lPMWt+xB4q1gw$uwtwWV2BljRrn2CAsyExqOz0rBKOlPbJEKEeb0pJS1Y","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:41.144897Z"}' headers: Content-Length: - - "684" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:02 GMT + - Mon, 28 Apr 2025 09:37:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2214,48 +2214,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fe31c4d-c79c-4ee3-84c1-6f99d43113d3 + - d5e778fd-da09-4277-af42-bb015ade2644 status: 200 OK code: 200 - duration: 103.043958ms + duration: 50.783583ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"environment_variables":{"foo":"bar"},"secret_environment_variables":[{"key":"foo_secret","value":"bar_secret"},{"key":"test_secret","value":null}]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$PUAwJF5WrXcgFi47ZMvPew$jBbdALk3thAXyt50WNVVvUtJ5R0jW/QCedkKVneFWn0","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:58.598993Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:46.245920682Z"}' headers: Content-Length: - - "684" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:02 GMT + - Mon, 28 Apr 2025 09:37:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2263,10 +2265,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64aa562d-d218-4a82-8dd9-988f0dba393f + - d1ea07da-7db0-47cc-9647-ee9aec28bd7d status: 200 OK code: 200 - duration: 156.738166ms + duration: 415.2715ms - id: 46 request: proto: HTTP/1.1 @@ -2282,8 +2284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2291,20 +2293,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 698 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$PUAwJF5WrXcgFi47ZMvPew$jBbdALk3thAXyt50WNVVvUtJ5R0jW/QCedkKVneFWn0","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:58.598993Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:46.245921Z"}' headers: Content-Length: - - "684" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:02 GMT + - Mon, 28 Apr 2025 09:37:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2312,10 +2314,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22e8f116-b565-4351-b94a-26a5f179bd3c + - ac0adb03-f326-4af0-9ae8-0b01319c454b status: 200 OK code: 200 - duration: 73.126709ms + duration: 40.758916ms - id: 47 request: proto: HTTP/1.1 @@ -2331,8 +2333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2340,20 +2342,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$PUAwJF5WrXcgFi47ZMvPew$jBbdALk3thAXyt50WNVVvUtJ5R0jW/QCedkKVneFWn0","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:58.598993Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:46.615705Z"}' headers: Content-Length: - - "684" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:03 GMT + - Mon, 28 Apr 2025 09:37:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,10 +2363,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86bab1a5-ac09-43cd-89e4-7113a9f35c70 + - c1c2889f-4f43-468c-9fbb-6b532dd57bc1 status: 200 OK code: 200 - duration: 77.883708ms + duration: 47.420209ms - id: 48 request: proto: HTTP/1.1 @@ -2380,8 +2382,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2389,20 +2391,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$PUAwJF5WrXcgFi47ZMvPew$jBbdALk3thAXyt50WNVVvUtJ5R0jW/QCedkKVneFWn0","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:58.598993Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:46.615705Z"}' headers: Content-Length: - - "684" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:04 GMT + - Mon, 28 Apr 2025 09:37:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,10 +2412,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbcba470-ac4f-4ce3-ad2f-79ad06df4bff + - 3a8d4cbd-8dcd-44d3-b8b1-33bcf58a6052 status: 200 OK code: 200 - duration: 71.753167ms + duration: 36.080083ms - id: 49 request: proto: HTTP/1.1 @@ -2429,8 +2431,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2438,20 +2440,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$PUAwJF5WrXcgFi47ZMvPew$jBbdALk3thAXyt50WNVVvUtJ5R0jW/QCedkKVneFWn0","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:38:58.598993Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:46.615705Z"}' headers: Content-Length: - - "684" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:05 GMT + - Mon, 28 Apr 2025 09:37:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2459,50 +2461,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49d33a44-2873-4d8a-86a8-215024732121 + - bf48d08b-6b6e-4adf-ade7-35120137170d status: 200 OK code: 200 - duration: 93.651125ms + duration: 45.7015ms - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 149 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"environment_variables":{"foo":"bar"},"secret_environment_variables":[{"key":"test_secret","value":null},{"key":"foo_secret","value":"bar_secret"}]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"pending","tags":[],"updated_at":"2025-03-20T15:39:05.383770407Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:46.615705Z"}' headers: Content-Length: - - "686" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:05 GMT + - Mon, 28 Apr 2025 09:37:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2510,10 +2510,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48657758-81c1-401a-b08c-5786bc926bd0 + - eaffb402-4fa4-45bb-8176-e65688c45214 status: 200 OK code: 200 - duration: 325.674583ms + duration: 42.792375ms - id: 51 request: proto: HTTP/1.1 @@ -2529,8 +2529,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2538,20 +2538,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 683 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"pending","tags":[],"updated_at":"2025-03-20T15:39:05.383770Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:46.615705Z"}' headers: Content-Length: - - "683" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:05 GMT + - Mon, 28 Apr 2025 09:37:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2559,10 +2559,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb42bb73-fb7f-44a2-b37f-9b4c7c9f45ec + - 3a7aef3d-0235-42b3-8d2b-9e86f1ccee9b status: 200 OK code: 200 - duration: 66.661667ms + duration: 47.004084ms - id: 52 request: proto: HTTP/1.1 @@ -2578,29 +2578,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 681 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:39:05.789824Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:52.408756115Z"}' headers: Content-Length: - - "681" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:10 GMT + - Mon, 28 Apr 2025 09:37:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2608,10 +2608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b467c98f-1bf7-4f64-9fa1-98b46efd2105 + - e8656e1b-a424-4310-a189-e49eb9e924bf status: 200 OK code: 200 - duration: 85.556875ms + duration: 170.253375ms - id: 53 request: proto: HTTP/1.1 @@ -2627,8 +2627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2636,20 +2636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 681 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:39:05.789824Z"}' + body: '{"created_at":"2025-04-28T09:37:39.730990Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"9a02f592-bb53-4c3e-8336-012076fad92e","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtest5lopdqs6","registry_namespace_id":"8143e3ee-48ef-4829-a20f-a477cf6c1bce","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$LRWZ4maW4VIqSDPxGsoe1w$vdGYUWrJHs2Ztq9Yecx62+BSDkn5ZYEvGYhAMVjU6tY","key":"foo_secret"}],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:52.408756Z"}' headers: Content-Length: - - "681" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:10 GMT + - Mon, 28 Apr 2025 09:37:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2657,10 +2657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95cf33da-8bd4-4c36-81f5-bbc620774a2b + - 0ebe6c71-e6e3-4ae4-8439-f51d02d24992 status: 200 OK code: 200 - duration: 69.5475ms + duration: 43.80225ms - id: 54 request: proto: HTTP/1.1 @@ -2676,8 +2676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/9a02f592-bb53-4c3e-8336-012076fad92e method: GET response: proto: HTTP/2.0 @@ -2685,20 +2685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 681 + content_length: 37 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:39:05.789824Z"}' + body: '{"message":"Namespace was not found"}' headers: Content-Length: - - "681" + - "37" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:11 GMT + - Mon, 28 Apr 2025 09:37:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2706,48 +2706,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec288f29-74de-4240-b7cb-1f67e9b42e11 - status: 200 OK - code: 200 - duration: 126.61175ms + - e8b739ca-564b-4645-a35a-e1496adc3ef9 + status: 404 Not Found + code: 404 + duration: 24.26625ms - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 159 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tags-test","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[],"tags":["tag1","tag2"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 681 + content_length: 492 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:39:05.789824Z"}' + body: '{"created_at":"2025-04-28T09:37:57.937650520Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:57.937650520Z"}' headers: Content-Length: - - "681" + - "492" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:12 GMT + - Mon, 28 Apr 2025 09:37:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2755,10 +2757,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9b6078e-4bac-4ebc-9a41-4b433e5213f9 + - 4ad09d74-ea71-4e12-84b4-bd8e6a1f4600 status: 200 OK code: 200 - duration: 113.637375ms + duration: 372.210083ms - id: 56 request: proto: HTTP/1.1 @@ -2774,8 +2776,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d method: GET response: proto: HTTP/2.0 @@ -2783,20 +2785,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 681 + content_length: 486 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-03-20T15:39:05.789824Z"}' + body: '{"created_at":"2025-04-28T09:37:57.937651Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:57.937651Z"}' headers: Content-Length: - - "681" + - "486" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:13 GMT + - Mon, 28 Apr 2025 09:37:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2804,10 +2806,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 928b2892-b559-4ccd-a0a0-356dc3cbccd8 + - e1a80dcb-aa4b-4aa4-b16f-295cd418057a status: 200 OK code: 200 - duration: 99.556834ms + duration: 41.985375ms - id: 57 request: proto: HTTP/1.1 @@ -2823,29 +2825,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"deleting","tags":[],"updated_at":"2025-03-20T15:39:13.639801005Z"}' + body: '{"created_at":"2025-04-28T09:37:57.937651Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstestsgcuq7pv","registry_namespace_id":"95ce605d-b219-4eae-acd5-08daf7097d65","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:58.999022Z"}' headers: Content-Length: - - "687" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:13 GMT + - Mon, 28 Apr 2025 09:38:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2853,10 +2855,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6d46a22-8d10-475d-8209-497d1773949b + - 5092675b-75e5-4dca-b11b-8b46d8b2142e status: 200 OK code: 200 - duration: 297.792625ms + duration: 41.212125ms - id: 58 request: proto: HTTP/1.1 @@ -2872,8 +2874,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d method: GET response: proto: HTTP/2.0 @@ -2881,20 +2883,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-03-20T15:38:56.984648Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"f7005319-4a56-461b-a290-560845eb022e","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestygtqmskl","registry_namespace_id":"afd3a8cf-81e0-4cb2-8689-4b4ff0476def","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$TDgvNFO1IMwCMXF0srXBTA$tYygS0hbYubuyUvlDbrNSjEZYJ0LiIJG5dtP7SOKeB4","key":"foo_secret"}],"status":"deleting","tags":[],"updated_at":"2025-03-20T15:39:13.639801Z"}' + body: '{"created_at":"2025-04-28T09:37:57.937651Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstestsgcuq7pv","registry_namespace_id":"95ce605d-b219-4eae-acd5-08daf7097d65","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:58.999022Z"}' headers: Content-Length: - - "684" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:13 GMT + - Mon, 28 Apr 2025 09:38:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2902,10 +2904,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98cb4149-9792-442c-a20a-8dcbc431c3a2 + - 64f62a78-fb2f-4da9-b25f-0ea1b21349aa status: 200 OK code: 200 - duration: 70.9355ms + duration: 40.801334ms - id: 59 request: proto: HTTP/1.1 @@ -2921,8 +2923,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f7005319-4a56-461b-a290-560845eb022e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d method: GET response: proto: HTTP/2.0 @@ -2930,20 +2932,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 37 + content_length: 565 uncompressed: false - body: '{"message":"Namespace was not found"}' + body: '{"created_at":"2025-04-28T09:37:57.937651Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstestsgcuq7pv","registry_namespace_id":"95ce605d-b219-4eae-acd5-08daf7097d65","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:58.999022Z"}' headers: Content-Length: - - "37" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:18 GMT + - Mon, 28 Apr 2025 09:38:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2951,50 +2953,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c6f7016-2648-4926-ab42-e3ce9ed2b907 - status: 404 Not Found - code: 404 - duration: 44.102667ms + - 71b1e850-a7b9-41c8-8d61-7c08ff8c8007 + status: 200 OK + code: 200 + duration: 46.912792ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 159 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tags-test","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":["tag1","tag2"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345070727Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:19.345070727Z"}' + body: '{"created_at":"2025-04-28T09:37:57.937651Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstestsgcuq7pv","registry_namespace_id":"95ce605d-b219-4eae-acd5-08daf7097d65","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:58.999022Z"}' headers: Content-Length: - - "477" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:19 GMT + - Mon, 28 Apr 2025 09:38:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3002,10 +3002,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d3507a3-b6b2-4be5-bb0e-7df3a42d9d3b + - 391eda36-6f08-4182-b95a-51933f22e174 status: 200 OK code: 200 - duration: 365.954833ms + duration: 45.790625ms - id: 61 request: proto: HTTP/1.1 @@ -3021,8 +3021,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d method: GET response: proto: HTTP/2.0 @@ -3030,20 +3030,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:19.345071Z"}' + body: '{"created_at":"2025-04-28T09:37:57.937651Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstestsgcuq7pv","registry_namespace_id":"95ce605d-b219-4eae-acd5-08daf7097d65","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:37:58.999022Z"}' headers: Content-Length: - - "471" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:19 GMT + - Mon, 28 Apr 2025 09:38:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3051,10 +3051,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0b9f858-8bb8-470a-838c-a5089f691069 + - d96af51a-43b4-41ea-9b25-4b3d9208469c status: 200 OK code: 200 - duration: 90.811667ms + duration: 43.0265ms - id: 62 request: proto: HTTP/1.1 @@ -3070,29 +3070,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 571 uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:20.424060Z"}' + body: '{"created_at":"2025-04-28T09:37:57.937651Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstestsgcuq7pv","registry_namespace_id":"95ce605d-b219-4eae-acd5-08daf7097d65","secret_environment_variables":[],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:38:03.755499205Z"}' headers: Content-Length: - - "552" + - "571" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:24 GMT + - Mon, 28 Apr 2025 09:38:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3100,10 +3100,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e94b02dd-52c8-47cd-88b2-07a28faee96d + - b143d840-c715-449d-a0e1-8485508b2380 status: 200 OK code: 200 - duration: 86.028125ms + duration: 153.455292ms - id: 63 request: proto: HTTP/1.1 @@ -3119,8 +3119,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d method: GET response: proto: HTTP/2.0 @@ -3128,20 +3128,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 568 uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:20.424060Z"}' + body: '{"created_at":"2025-04-28T09:37:57.937651Z","description":"","environment_variables":{},"error_message":null,"id":"8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d","name":"tf-tags-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstestsgcuq7pv","registry_namespace_id":"95ce605d-b219-4eae-acd5-08daf7097d65","secret_environment_variables":[],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:38:03.755499Z"}' headers: Content-Length: - - "552" + - "568" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:29 GMT + - Mon, 28 Apr 2025 09:38:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3149,10 +3149,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cff5010-fa3c-4d79-bcbd-4cebf6b74366 + - 1d11a1e1-fe64-45ea-9ddf-e1d21242c80f status: 200 OK code: 200 - duration: 81.695042ms + duration: 37.782375ms - id: 64 request: proto: HTTP/1.1 @@ -3168,8 +3168,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d method: GET response: proto: HTTP/2.0 @@ -3177,20 +3177,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 37 uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:20.424060Z"}' + body: '{"message":"Namespace was not found"}' headers: Content-Length: - - "552" + - "37" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:39:34 GMT + - Mon, 28 Apr 2025 09:38:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3198,10 +3198,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34340795-d81e-4d37-8898-765ec58f8577 - status: 200 OK - code: 200 - duration: 93.583334ms + - 9454a8be-e4df-413c-a19a-12a0c95d6f8a + status: 404 Not Found + code: 404 + duration: 30.16975ms - id: 65 request: proto: HTTP/1.1 @@ -3217,547 +3217,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 552 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:20.424060Z"}' - headers: - Content-Length: - - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ef6ed70-d7f1-4781-8224-fb2bba4ed874 - status: 200 OK - code: 200 - duration: 80.560667ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 552 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:20.424060Z"}' - headers: - Content-Length: - - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5fec562c-3382-40e2-a0cf-fc263b6cc93a - status: 200 OK - code: 200 - duration: 78.239042ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 552 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:20.424060Z"}' - headers: - Content-Length: - - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87dbc9f1-213e-45fb-8cfc-a621ab016525 - status: 200 OK - code: 200 - duration: 74.42625ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 550 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:50.985602Z"}' - headers: - Content-Length: - - "550" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a6bf1a95-8d6d-4193-9a9f-cdcc6779f7fd - status: 200 OK - code: 200 - duration: 112.902167ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 550 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:50.985602Z"}' - headers: - Content-Length: - - "550" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9cffacbd-1a05-4062-8651-23886ecdb816 - status: 200 OK - code: 200 - duration: 188.85775ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 550 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:50.985602Z"}' - headers: - Content-Length: - - "550" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1bd8ddcb-871a-4ddb-9c6c-3df20aa55575 - status: 200 OK - code: 200 - duration: 108.424333ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 550 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:50.985602Z"}' - headers: - Content-Length: - - "550" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a57be5e3-df37-452d-90a1-91a446cfed36 - status: 200 OK - code: 200 - duration: 78.307541ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 550 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:50.985602Z"}' - headers: - Content-Length: - - "550" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 721a452f-3a89-40e0-9713-e53a653424f2 - status: 200 OK - code: 200 - duration: 88.976375ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 556 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:57.383450553Z"}' - headers: - Content-Length: - - "556" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1a915fce-1dd7-4be2-95f5-83e51805a421 - status: 200 OK - code: 200 - duration: 432.581458ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 553 - uncompressed: false - body: '{"created_at":"2025-03-20T15:39:19.345071Z","description":"","environment_variables":{},"error_message":null,"id":"5aab3535-9c06-4528-914f-c68f7bb5da3d","name":"tf-tags-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtftagstesttfz8sqjh","registry_namespace_id":"b452b878-81db-447c-9ba9-bcd86f0d8543","secret_environment_variables":[],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-03-20T15:39:57.383451Z"}' - headers: - Content-Length: - - "553" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:39:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 09d547a6-83db-424d-a3f9-f47c3d9cbed6 - status: 200 OK - code: 200 - duration: 103.603834ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 37 - uncompressed: false - body: '{"message":"Namespace was not found"}' - headers: - Content-Length: - - "37" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 15:40:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a1d8c169-a412-49ae-a6e0-3db56118c12b - status: 404 Not Found - code: 404 - duration: 39.81175ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/5aab3535-9c06-4528-914f-c68f7bb5da3d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8ded89b5-c41b-4bd5-97f9-7ae51c8a6e2d method: DELETE response: proto: HTTP/2.0 @@ -3776,9 +3237,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Mar 2025 15:40:02 GMT + - Mon, 28 Apr 2025 09:38:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3786,7 +3247,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6d55828-6a81-4c1b-ae66-ae1eb0c01b78 + - d4be074a-c63a-4590-8f4c-9dfa7b9ed98c status: 404 Not Found code: 404 - duration: 31.265542ms + duration: 25.412083ms diff --git a/internal/services/container/testdata/namespace-destroy-registry.cassette.yaml b/internal/services/container/testdata/namespace-destroy-registry.cassette.yaml index eda907b1e7..122b4ecb14 100644 --- a/internal/services/container/testdata/namespace-destroy-registry.cassette.yaml +++ b/internal/services/container/testdata/namespace-destroy-registry.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-cr-ns-01","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"test-cr-ns-01","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces method: POST response: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 465 + content_length: 479 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626182987Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:37:48.626182987Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373444566Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:13.373444566Z"}' headers: Content-Length: - - "465" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:48 GMT + - Mon, 28 Apr 2025 09:37:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c5c21da-8fbc-40ad-92e4-5bdc415bad2b + - 7d48ed9f-8f07-4639-b668-10a27270f440 status: 200 OK code: 200 - duration: 270.608333ms + duration: 612.678875ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626183Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:37:48.626183Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373445Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:13.373445Z"}' headers: Content-Length: - - "459" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:48 GMT + - Mon, 28 Apr 2025 09:37:13 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69031bfc-6e6e-4f0b-876c-968a822eb4f7 + - 8dd65f39-36cb-4e44-a235-eacd1ace30f3 status: 200 OK code: 200 - duration: 125.782042ms + duration: 77.662833ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: GET response: proto: HTTP/2.0 @@ -125,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626183Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01twwxe5xz","registry_namespace_id":"ec591349-2c6f-4fae-b571-a4a45de49a8e","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:37:50.895291Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373445Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01fwkhkytu","registry_namespace_id":"0bdb7279-8038-475e-9273-81c0a57b5145","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:15.687114Z"}' headers: Content-Length: - - "538" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:53 GMT + - Mon, 28 Apr 2025 09:37:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 287101c1-0325-4660-92be-78e0940196ac + - 91471a48-d6b3-43aa-8894-fc68e85664a2 status: 200 OK code: 200 - duration: 114.763333ms + duration: 95.354333ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: GET response: proto: HTTP/2.0 @@ -174,18 +174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626183Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01twwxe5xz","registry_namespace_id":"ec591349-2c6f-4fae-b571-a4a45de49a8e","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:37:50.895291Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373445Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01fwkhkytu","registry_namespace_id":"0bdb7279-8038-475e-9273-81c0a57b5145","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:15.687114Z"}' headers: Content-Length: - - "538" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:54 GMT + - Mon, 28 Apr 2025 09:37:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3368056f-f79b-480c-bb89-0fbed166ae5e + - 6ace1008-a9a6-4fcc-99e4-978df88f8072 status: 200 OK code: 200 - duration: 118.232292ms + duration: 83.564625ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: GET response: proto: HTTP/2.0 @@ -223,18 +223,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626183Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01twwxe5xz","registry_namespace_id":"ec591349-2c6f-4fae-b571-a4a45de49a8e","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:37:50.895291Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373445Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01fwkhkytu","registry_namespace_id":"0bdb7279-8038-475e-9273-81c0a57b5145","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:15.687114Z"}' headers: Content-Length: - - "538" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:54 GMT + - Mon, 28 Apr 2025 09:37:18 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86e74843-919b-47f7-906d-4141ce1aa97c + - d7860a70-406d-44a2-ba2a-9133fa23eb35 status: 200 OK code: 200 - duration: 118.009542ms + duration: 78.753125ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: GET response: proto: HTTP/2.0 @@ -272,18 +272,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626183Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01twwxe5xz","registry_namespace_id":"ec591349-2c6f-4fae-b571-a4a45de49a8e","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:37:50.895291Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373445Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01fwkhkytu","registry_namespace_id":"0bdb7279-8038-475e-9273-81c0a57b5145","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:15.687114Z"}' headers: Content-Length: - - "538" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:55 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19ce2c91-9f02-481c-b0ac-4a621a1ef9c6 + - 0b2b8f00-c3cd-4b55-b40f-1ac166a7e842 status: 200 OK code: 200 - duration: 110.3205ms + duration: 80.4255ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: GET response: proto: HTTP/2.0 @@ -321,18 +321,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626183Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01twwxe5xz","registry_namespace_id":"ec591349-2c6f-4fae-b571-a4a45de49a8e","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:37:50.895291Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373445Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01fwkhkytu","registry_namespace_id":"0bdb7279-8038-475e-9273-81c0a57b5145","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:15.687114Z"}' headers: Content-Length: - - "538" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:56 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2f65a7f-1593-4285-9ac5-6b07bf43e1f3 + - 8a252653-4faf-4cb0-9f9b-cb9b1fae341c status: 200 OK code: 200 - duration: 103.598917ms + duration: 93.500584ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: DELETE response: proto: HTTP/2.0 @@ -370,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 544 + content_length: 558 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626183Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01twwxe5xz","registry_namespace_id":"ec591349-2c6f-4fae-b571-a4a45de49a8e","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:37:56.165784713Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373445Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01fwkhkytu","registry_namespace_id":"0bdb7279-8038-475e-9273-81c0a57b5145","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:19.419427189Z"}' headers: Content-Length: - - "544" + - "558" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:56 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39ac2301-b1c4-4b58-94ed-055f851034f6 + - ff74de60-0ff8-48e4-8597-c8036021b352 status: 200 OK code: 200 - duration: 181.383792ms + duration: 161.167792ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: GET response: proto: HTTP/2.0 @@ -419,18 +419,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 541 + content_length: 555 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:48.626183Z","description":"","environment_variables":{},"error_message":null,"id":"4f5a3525-2077-4d7f-bffd-1681c2c09c7d","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01twwxe5xz","registry_namespace_id":"ec591349-2c6f-4fae-b571-a4a45de49a8e","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:37:56.165785Z"}' + body: '{"created_at":"2025-04-28T09:37:13.373445Z","description":"","environment_variables":{},"error_message":null,"id":"86805fb7-b304-4d12-a85b-8ed65b1da533","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"pl-waw","registry_endpoint":"rg.pl-waw.scw.cloud/funcscwtestcrns01fwkhkytu","registry_namespace_id":"0bdb7279-8038-475e-9273-81c0a57b5145","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:19.419427Z"}' headers: Content-Length: - - "541" + - "555" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:56 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8765b04f-3d9d-4f69-a357-f177f6c3446e + - b7656c4e-a357-440b-ac00-820d6a2427dd status: 200 OK code: 200 - duration: 111.130417ms + duration: 76.237667ms - id: 9 request: proto: HTTP/1.1 @@ -459,8 +459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: GET response: proto: HTTP/2.0 @@ -479,7 +479,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:01 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d546f276-8d15-4a9a-980e-6d4c7a07648b + - 126984ad-ac26-430a-bdf0-f452d8143a29 status: 404 Not Found code: 404 - duration: 60.580666ms + duration: 58.403833ms - id: 10 request: proto: HTTP/1.1 @@ -508,8 +508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/registry/v1/regions/pl-waw/namespaces/ec591349-2c6f-4fae-b571-a4a45de49a8e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/registry/v1/regions/pl-waw/namespaces/0bdb7279-8038-475e-9273-81c0a57b5145 method: DELETE response: proto: HTTP/2.0 @@ -528,7 +528,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:01 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6454480-47eb-4d7a-aa17-2edafe2559f7 + - 045ed963-0ea9-48bc-8952-f298acb8bf07 status: 404 Not Found code: 404 - duration: 56.5535ms + duration: 62.03975ms - id: 11 request: proto: HTTP/1.1 @@ -557,8 +557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/registry/v1/regions/pl-waw/namespaces/ec591349-2c6f-4fae-b571-a4a45de49a8e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/registry/v1/regions/pl-waw/namespaces/0bdb7279-8038-475e-9273-81c0a57b5145 method: GET response: proto: HTTP/2.0 @@ -577,7 +577,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:01 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3f46131-37cb-4db5-9f90-bd35defca4e5 + - b4a0f524-da22-4e3f-a0f2-84ae3222f373 status: 404 Not Found code: 404 - duration: 78.333958ms + duration: 57.103375ms - id: 12 request: proto: HTTP/1.1 @@ -606,8 +606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/4f5a3525-2077-4d7f-bffd-1681c2c09c7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/pl-waw/namespaces/86805fb7-b304-4d12-a85b-8ed65b1da533 method: DELETE response: proto: HTTP/2.0 @@ -626,7 +626,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:01 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca6d6cd9-59a3-4f69-9682-001dc36999cc + - a3801d67-3e3d-4939-a432-3be30ae4cc61 status: 404 Not Found code: 404 - duration: 128.561041ms + duration: 60.133084ms - id: 13 request: proto: HTTP/1.1 @@ -655,8 +655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/registry/v1/regions/pl-waw/namespaces/ec591349-2c6f-4fae-b571-a4a45de49a8e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/registry/v1/regions/pl-waw/namespaces/0bdb7279-8038-475e-9273-81c0a57b5145 method: DELETE response: proto: HTTP/2.0 @@ -675,7 +675,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:01 GMT + - Mon, 28 Apr 2025 09:37:24 GMT Server: - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: @@ -685,7 +685,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9e4ed0d-7aab-4f27-9dde-1b2a0ba48b0a + - 0657c86c-1f5a-4ebc-a8fa-afd1f3f7790d status: 404 Not Found code: 404 - duration: 61.750333ms + duration: 64.37275ms diff --git a/internal/services/container/testdata/namespace-secret-management.cassette.yaml b/internal/services/container/testdata/namespace-secret-management.cassette.yaml index d9e9245fa5..68df6ce9f3 100644 --- a/internal/services/container/testdata/namespace-secret-management.cassette.yaml +++ b/internal/services/container/testdata/namespace-secret-management.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 185 + content_length: 221 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-secret-ns","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[{"key":"SECRET_1","value":"value1"}],"tags":null}' + body: '{"name":"test-secret-ns","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[{"key":"SECRET_2","value":"value2"},{"key":"SECRET_1","value":"value1"}],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 599 + content_length: 750 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552210872Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"pending","tags":[],"updated_at":"2025-03-20T14:55:43.552210872Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018389Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$CQZQjDm9jPa/jPMNe//MUA$UCuaruLHHsw5FLfElD6NcX7jnhyw3KnN3F4TfNmf3Kg","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:14.091018389Z"}' headers: Content-Length: - - "599" + - "750" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:43 GMT + - Mon, 28 Apr 2025 09:37:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b59b7f8-e591-4756-95b7-1297f98dd71b + - 0cdb6a0e-3fa4-429a-8cb7-d9f6af565ff1 status: 200 OK code: 200 - duration: 513.715959ms + duration: 1.277447792s - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 593 + content_length: 744 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"pending","tags":[],"updated_at":"2025-03-20T14:55:43.552211Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$CQZQjDm9jPa/jPMNe//MUA$UCuaruLHHsw5FLfElD6NcX7jnhyw3KnN3F4TfNmf3Kg","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:14.091018Z"}' headers: Content-Length: - - "593" + - "744" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:43 GMT + - Mon, 28 Apr 2025 09:37:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df06c3d0-59a9-462a-a866-63043d88c092 + - 897a8fe4-09e7-4c44-b747-cd8b79e0a088 status: 200 OK code: 200 - duration: 193.886042ms + duration: 42.667083ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$CQZQjDm9jPa/jPMNe//MUA$UCuaruLHHsw5FLfElD6NcX7jnhyw3KnN3F4TfNmf3Kg","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.789257Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:48 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2aab171-6b0e-43f4-985b-10b1114a40ba + - 042d996f-9f29-457d-8c5f-0c4f1d8943f8 status: 200 OK code: 200 - duration: 93.599291ms + duration: 40.868583ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$CQZQjDm9jPa/jPMNe//MUA$UCuaruLHHsw5FLfElD6NcX7jnhyw3KnN3F4TfNmf3Kg","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.789257Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:48 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bd60073-c148-4175-8249-58d6e0109e72 + - 46d26ad5-54eb-4386-bf8d-50a268571d4f status: 200 OK code: 200 - duration: 68.97575ms + duration: 34.753542ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$CQZQjDm9jPa/jPMNe//MUA$UCuaruLHHsw5FLfElD6NcX7jnhyw3KnN3F4TfNmf3Kg","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.789257Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:49 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6045f2ca-626f-4b56-965c-e59ccff6e6f9 + - 7e28a0a1-b1fe-4a29-b245-836df1c7c29d status: 200 OK code: 200 - duration: 83.317958ms + duration: 37.309792ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$CQZQjDm9jPa/jPMNe//MUA$UCuaruLHHsw5FLfElD6NcX7jnhyw3KnN3F4TfNmf3Kg","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.789257Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:49 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 124bf5cf-a18b-4935-ac1c-c8c7674b12a4 + - 68197867-b755-4049-985d-f56a0dd732ec status: 200 OK code: 200 - duration: 87.964709ms + duration: 45.953833ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$CQZQjDm9jPa/jPMNe//MUA$UCuaruLHHsw5FLfElD6NcX7jnhyw3KnN3F4TfNmf3Kg","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.789257Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:50 GMT + - Mon, 28 Apr 2025 09:37:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8893c921-09e3-4212-8469-f8026d05a50c + - 84ddba75-bbd8-4927-b1b9-a5e66f354196 status: 200 OK code: 200 - duration: 73.397084ms + duration: 45.20425ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$CQZQjDm9jPa/jPMNe//MUA$UCuaruLHHsw5FLfElD6NcX7jnhyw3KnN3F4TfNmf3Kg","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:18.789257Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:51 GMT + - Mon, 28 Apr 2025 09:37:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,29 +391,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 948293c2-5831-4839-9af4-4f7ffe4df7b0 + - ab929070-6725-44c6-b326-21c0d3233770 status: 200 OK code: 200 - duration: 100.508041ms + duration: 51.015541ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 78 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"secret_environment_variables":[]}' + body: '{"secret_environment_variables":[{"key":"SECRET_2","value":"updated_value2"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: PATCH response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 830 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:21.022173785Z"}' headers: Content-Length: - - "674" + - "830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:51 GMT + - Mon, 28 Apr 2025 09:37:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 181282bb-3df9-438c-acf3-4e374c29dc3a + - fd7fa342-2a0f-455b-abe0-7f83d0faea64 status: 200 OK code: 200 - duration: 85.673083ms + duration: 815.442459ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 827 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:21.022174Z"}' headers: Content-Length: - - "674" + - "827" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:51 GMT + - Mon, 28 Apr 2025 09:37:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e7671be-1e33-4a5a-9a42-f53d55ca558a + - e48fda1d-a7c0-4ef7-94fc-e4022ee53902 status: 200 OK code: 200 - duration: 142.227625ms + duration: 97.503375ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.402805Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:52 GMT + - Mon, 28 Apr 2025 09:37:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0755306a-a120-42b4-9089-347abfb24ab7 + - a8142d97-8e6e-4b57-a5db-856163a800f6 status: 200 OK code: 200 - duration: 74.438042ms + duration: 51.030542ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.402805Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:53 GMT + - Mon, 28 Apr 2025 09:37:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3099c9ab-44b1-47b8-9a17-360c10697d07 + - 52c76302-3881-41d5-9493-741184f68989 status: 200 OK code: 200 - duration: 82.858292ms + duration: 40.753541ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.402805Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:53 GMT + - Mon, 28 Apr 2025 09:37:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 565d404a-1d60-4ea3-b821-6f7cd3563d3d + - 04659221-02cd-4fc3-82cd-91c4ca3db054 status: 200 OK code: 200 - duration: 106.427916ms + duration: 37.185792ms - id: 13 request: proto: HTTP/1.1 @@ -657,8 +657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$jWJH8iJ8X0g24+3aKRRn5g$xCbRhWIGLeIb+SuBUJJQMHKJ/aNqaCeBqCu7eOF1PP8","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:45.440082Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.402805Z"}' headers: Content-Length: - - "674" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:55:54 GMT + - Mon, 28 Apr 2025 09:37:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,505 +687,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 798ed59e-6a45-41b2-bd31-1e1071875760 + - 419c1466-0dc3-466b-87dc-453be3c2c77c status: 200 OK code: 200 - duration: 76.580667ms + duration: 42.392167ms - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 106 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"secret_environment_variables":[{"key":"SECRET_1","value":"value1"},{"key":"SECRET_2","value":"value2"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 813 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$cE94PBF3rES9hGo81VV++A$XBFMaybL2L8hXiKCxN5FjlEMfLHR1fRNk7z+GnZITc0","key":"SECRET_2"}],"status":"pending","tags":[],"updated_at":"2025-03-20T14:55:55.278756962Z"}' - headers: - Content-Length: - - "813" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:55:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 65c3f70a-bfed-47c5-b563-f2306850d49e - status: 200 OK - code: 200 - duration: 627.5825ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 810 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$cE94PBF3rES9hGo81VV++A$XBFMaybL2L8hXiKCxN5FjlEMfLHR1fRNk7z+GnZITc0","key":"SECRET_2"}],"status":"pending","tags":[],"updated_at":"2025-03-20T14:55:55.278757Z"}' - headers: - Content-Length: - - "810" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:55:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d3003113-8763-4dbc-90e9-828034b28e8d - status: 200 OK - code: 200 - duration: 99.885ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$cE94PBF3rES9hGo81VV++A$XBFMaybL2L8hXiKCxN5FjlEMfLHR1fRNk7z+GnZITc0","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:55.797951Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c2a412e3-bed0-4895-aa48-30f6470b9b82 - status: 200 OK - code: 200 - duration: 204.2435ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$cE94PBF3rES9hGo81VV++A$XBFMaybL2L8hXiKCxN5FjlEMfLHR1fRNk7z+GnZITc0","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:55.797951Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c73d3584-2a7a-4a05-9c12-11f367660a47 - status: 200 OK - code: 200 - duration: 98.26775ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$cE94PBF3rES9hGo81VV++A$XBFMaybL2L8hXiKCxN5FjlEMfLHR1fRNk7z+GnZITc0","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:55.797951Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 39aa7242-bbc6-4cc4-8629-5192919798a2 - status: 200 OK - code: 200 - duration: 94.105625ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$cE94PBF3rES9hGo81VV++A$XBFMaybL2L8hXiKCxN5FjlEMfLHR1fRNk7z+GnZITc0","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:55.797951Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 173a409a-e0f3-4067-b393-0f11a25bad03 - status: 200 OK - code: 200 - duration: 78.906958ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$cE94PBF3rES9hGo81VV++A$XBFMaybL2L8hXiKCxN5FjlEMfLHR1fRNk7z+GnZITc0","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:55:55.797951Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 76166e5f-52da-4e86-82af-72aafa1503e7 - status: 200 OK - code: 200 - duration: 80.760042ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 70 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"secret_environment_variables":[{"key":"SECRET_2","value":"value2"}]}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 813 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"pending","tags":[],"updated_at":"2025-03-20T14:56:04.103081345Z"}' - headers: - Content-Length: - - "813" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 03722ff6-8a47-4a87-b361-e9f292c0b99c - status: 200 OK - code: 200 - duration: 531.760083ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 810 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"pending","tags":[],"updated_at":"2025-03-20T14:56:04.103081Z"}' - headers: - Content-Length: - - "810" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4fe9e9cc-8831-4354-bf38-432a1fbcce06 - status: 200 OK - code: 200 - duration: 95.232167ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:04.465436Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 02290af3-4aa2-4ed7-887c-ccd61b98a0cf - status: 200 OK - code: 200 - duration: 91.223167ms - - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1200,8 +706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -1209,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 808 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:04.465436Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$dj82rMT7WUj6InUn7AJK5Q$6rKtK8ZSH8pduhhg1Ga0XpQsstTW29H8Lo7rggcXzUg","key":"SECRET_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:21.402805Z"}' headers: Content-Length: - - "808" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:09 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,176 +736,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cd93940-3a9f-422a-a941-87780e21a594 + - d547d679-55af-4287-81d0-40bde5985c13 status: 200 OK code: 200 - duration: 86.389916ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:04.465436Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e57e1f3-b4d7-4949-a216-04b46649e821 - status: 200 OK - code: 200 - duration: 87.627875ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:04.465436Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 517c9a49-300f-45d3-bf32-4c3451361a96 - status: 200 OK - code: 200 - duration: 83.849125ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 808 - uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:04.465436Z"}' - headers: - Content-Length: - - "808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 20 Mar 2025 14:56:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 55e380b5-35d5-44e7-9bef-5ae8d86bf5d0 - status: 200 OK - code: 200 - duration: 79.286125ms - - id: 28 + duration: 35.631875ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 70 + content_length: 106 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"secret_environment_variables":[{"key":"SECRET_3","value":"value3"}]}' + body: '{"secret_environment_variables":[{"key":"SECRET_KEY_1","value":"value1"},{"key":"SECRET_1","value":null}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: PATCH response: proto: HTTP/2.0 @@ -1407,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 834 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$AdrcgVw3wNLFpBGHb/hvMA$MpCTe+djHy+7/nRNybOb1Gu7cCZg8ipGytxCE2Caw+I","key":"SECRET_3"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"pending","tags":[],"updated_at":"2025-03-20T14:56:12.303405820Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$icbf3UMyvu6n6d0NcokI3g$hgwJhGCwgqogQ62+56JXjAGCVWpQhtfJ0Aiok9ij/Lw","key":"SECRET_KEY_1"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:27.726057197Z"}' headers: Content-Length: - - "947" + - "834" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:12 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,11 +787,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f94b939e-6ce2-400c-81e5-52d8ed3de138 + - 52fc5a30-a3c8-4736-a322-bf64f5aed9ba status: 200 OK code: 200 - duration: 240.547041ms - - id: 29 + duration: 448.466834ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1447,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -1456,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 944 + content_length: 831 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$AdrcgVw3wNLFpBGHb/hvMA$MpCTe+djHy+7/nRNybOb1Gu7cCZg8ipGytxCE2Caw+I","key":"SECRET_3"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"pending","tags":[],"updated_at":"2025-03-20T14:56:12.303406Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$icbf3UMyvu6n6d0NcokI3g$hgwJhGCwgqogQ62+56JXjAGCVWpQhtfJ0Aiok9ij/Lw","key":"SECRET_KEY_1"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:37:27.726057Z"}' headers: Content-Length: - - "944" + - "831" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:12 GMT + - Mon, 28 Apr 2025 09:37:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,11 +836,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 348433c8-1baa-43be-8cf2-8f8d4cfe643a + - fb245785-b381-4ff3-950a-cedd7f4070c4 status: 200 OK code: 200 - duration: 70.383167ms - - id: 30 + duration: 38.161375ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1496,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -1505,20 +864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 942 + content_length: 829 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$AdrcgVw3wNLFpBGHb/hvMA$MpCTe+djHy+7/nRNybOb1Gu7cCZg8ipGytxCE2Caw+I","key":"SECRET_3"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:12.713966Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$icbf3UMyvu6n6d0NcokI3g$hgwJhGCwgqogQ62+56JXjAGCVWpQhtfJ0Aiok9ij/Lw","key":"SECRET_KEY_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.170790Z"}' headers: Content-Length: - - "942" + - "829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:17 GMT + - Mon, 28 Apr 2025 09:37:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,11 +885,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b5ab45b-8c93-4df5-872b-6303c5fd49ee + - 66033ce0-8069-48ef-9dce-61c35256715a status: 200 OK code: 200 - duration: 92.420334ms - - id: 31 + duration: 51.026ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1545,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -1554,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 942 + content_length: 829 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$AdrcgVw3wNLFpBGHb/hvMA$MpCTe+djHy+7/nRNybOb1Gu7cCZg8ipGytxCE2Caw+I","key":"SECRET_3"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:12.713966Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$icbf3UMyvu6n6d0NcokI3g$hgwJhGCwgqogQ62+56JXjAGCVWpQhtfJ0Aiok9ij/Lw","key":"SECRET_KEY_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.170790Z"}' headers: Content-Length: - - "942" + - "829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:17 GMT + - Mon, 28 Apr 2025 09:37:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,11 +934,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9193f87-afe6-4833-b90a-33a89919b46a + - 02c43a79-a066-4406-83ec-b5a4c5113f39 status: 200 OK code: 200 - duration: 81.921334ms - - id: 32 + duration: 38.57375ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1594,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -1603,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 942 + content_length: 829 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$AdrcgVw3wNLFpBGHb/hvMA$MpCTe+djHy+7/nRNybOb1Gu7cCZg8ipGytxCE2Caw+I","key":"SECRET_3"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:12.713966Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$icbf3UMyvu6n6d0NcokI3g$hgwJhGCwgqogQ62+56JXjAGCVWpQhtfJ0Aiok9ij/Lw","key":"SECRET_KEY_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.170790Z"}' headers: Content-Length: - - "942" + - "829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:18 GMT + - Mon, 28 Apr 2025 09:37:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,11 +983,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d1f0d53-82c8-474c-98dc-2df9ed3ed033 + - ff6325e9-e990-4c76-af93-1a6ee66537e9 status: 200 OK code: 200 - duration: 82.890625ms - - id: 33 + duration: 42.937292ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1643,8 +1002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -1652,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 942 + content_length: 829 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$AdrcgVw3wNLFpBGHb/hvMA$MpCTe+djHy+7/nRNybOb1Gu7cCZg8ipGytxCE2Caw+I","key":"SECRET_3"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"ready","tags":[],"updated_at":"2025-03-20T14:56:12.713966Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$icbf3UMyvu6n6d0NcokI3g$hgwJhGCwgqogQ62+56JXjAGCVWpQhtfJ0Aiok9ij/Lw","key":"SECRET_KEY_1"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:37:28.170790Z"}' headers: Content-Length: - - "942" + - "829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:19 GMT + - Mon, 28 Apr 2025 09:37:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,11 +1032,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36e462e2-4c1f-4e3c-b8c6-1e3f222c7205 + - 6ac92e71-7fd6-498c-8b47-8161a1aceef9 status: 200 OK code: 200 - duration: 76.22925ms - - id: 34 + duration: 39.639458ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1692,8 +1051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: DELETE response: proto: HTTP/2.0 @@ -1701,20 +1060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 948 + content_length: 835 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$AdrcgVw3wNLFpBGHb/hvMA$MpCTe+djHy+7/nRNybOb1Gu7cCZg8ipGytxCE2Caw+I","key":"SECRET_3"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"deleting","tags":[],"updated_at":"2025-03-20T14:56:19.749087644Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$icbf3UMyvu6n6d0NcokI3g$hgwJhGCwgqogQ62+56JXjAGCVWpQhtfJ0Aiok9ij/Lw","key":"SECRET_KEY_1"}],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:33.617110558Z"}' headers: Content-Length: - - "948" + - "835" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:19 GMT + - Mon, 28 Apr 2025 09:37:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,11 +1081,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 092f6a32-33c8-4757-b15f-6d843759148f + - e5046c0f-18f5-4478-a147-23c7da03486f status: 200 OK code: 200 - duration: 200.330208ms - - id: 35 + duration: 153.83575ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1741,8 +1100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -1750,20 +1109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 945 + content_length: 832 uncompressed: false - body: '{"created_at":"2025-03-20T14:55:43.552211Z","description":"","environment_variables":{},"error_message":null,"id":"77631cab-a9b6-49d5-9c90-0b3e21db0da6","name":"test-secret-ns","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsrcsw0xl8","registry_namespace_id":"c858f7c9-24d7-4174-b2bc-1f6e71de2938","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$AdrcgVw3wNLFpBGHb/hvMA$MpCTe+djHy+7/nRNybOb1Gu7cCZg8ipGytxCE2Caw+I","key":"SECRET_3"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$N6sNJFVtfRBUcXbTEPrbMQ$Kr8YfqjUG/60D5dCNcw+zk1ZSrabucAtHZMIC7fNSXg","key":"SECRET_1"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$r/NXb3OtaN5xvjlJnlpu8A$k7zYkmYCzEh6PwyzjolCpuS/F8KlRMgDDVSk9H62Fd8","key":"SECRET_2"}],"status":"deleting","tags":[],"updated_at":"2025-03-20T14:56:19.749088Z"}' + body: '{"created_at":"2025-04-28T09:37:14.091018Z","description":"","environment_variables":{},"error_message":null,"id":"731c9efa-a0ca-41d3-9f4b-dd0255aa426a","name":"test-secret-ns","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestsecretnsijc6fszy","registry_namespace_id":"bf7f1926-fdf0-4dba-934a-1d84dcf10735","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$gvxkpz+bTb1/rdfFcBm3xQ$c45TEyRMVqEqB4vqQhaGboSLpgDTyPAl6GN+aDZQOvM","key":"SECRET_2"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$icbf3UMyvu6n6d0NcokI3g$hgwJhGCwgqogQ62+56JXjAGCVWpQhtfJ0Aiok9ij/Lw","key":"SECRET_KEY_1"}],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:37:33.617111Z"}' headers: Content-Length: - - "945" + - "832" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:19 GMT + - Mon, 28 Apr 2025 09:37:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,11 +1130,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85ad34c6-d33c-4ed3-8cba-23828c4f086a + - 0d802364-f934-47ee-821e-6c0e9db4aaa4 status: 200 OK code: 200 - duration: 74.686667ms - - id: 36 + duration: 38.682667ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1790,8 +1149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: GET response: proto: HTTP/2.0 @@ -1810,9 +1169,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:24 GMT + - Mon, 28 Apr 2025 09:37:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,11 +1179,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40540a23-df77-4051-9fed-9385f18afc38 + - 80755b9e-1cc3-4173-b614-a6d8d27a314e status: 404 Not Found code: 404 - duration: 31.168292ms - - id: 37 + duration: 25.536875ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1839,8 +1198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/77631cab-a9b6-49d5-9c90-0b3e21db0da6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/731c9efa-a0ca-41d3-9f4b-dd0255aa426a method: DELETE response: proto: HTTP/2.0 @@ -1859,9 +1218,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 20 Mar 2025 14:56:25 GMT + - Mon, 28 Apr 2025 09:37:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1869,7 +1228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f6f4b34-7e2c-4d1e-8277-c2ca2c7f8ccf + - d68078df-86e3-43b1-8ae9-df313fd71c8c status: 404 Not Found code: 404 - duration: 31.753541ms + duration: 131.237208ms diff --git a/internal/services/function/function.go b/internal/services/function/function.go index c58834eb92..2c1260b08b 100644 --- a/internal/services/function/function.go +++ b/internal/services/function/function.go @@ -77,7 +77,9 @@ func ResourceFunction() *schema.Resource { Type: schema.TypeString, ValidateFunc: validation.StringLenBetween(0, 1000), }, - ValidateDiagFunc: validation.MapKeyLenBetween(0, 100), + ValidateDiagFunc: validation.MapKeyLenBetween(0, 100), + DiffSuppressFunc: dsf.CompareArgon2idPasswordAndHash, + DiffSuppressOnRefresh: true, }, "privacy": { Type: schema.TypeString, @@ -307,6 +309,7 @@ func ResourceFunctionRead(ctx context.Context, d *schema.ResourceData, m interfa _ = d.Set("http_option", f.HTTPOption) _ = d.Set("namespace_id", f.NamespaceID) _ = d.Set("sandbox", f.Sandbox) + _ = d.Set("secret_environment_variables", flattenFunctionSecrets(f.SecretEnvironmentVariables)) return diags } @@ -340,7 +343,8 @@ func ResourceFunctionUpdate(ctx context.Context, d *schema.ResourceData, m inter } if d.HasChanges("secret_environment_variables") { - req.SecretEnvironmentVariables = expandFunctionsSecrets(d.Get("secret_environment_variables")) + oldEnv, newEnv := d.GetChange("secret_environment_variables") + req.SecretEnvironmentVariables = filterSecretEnvsToPatch(expandFunctionsSecrets(oldEnv), expandFunctionsSecrets(newEnv)) updated = true } diff --git a/internal/services/function/function_test.go b/internal/services/function/function_test.go index 8e5a338fae..ee868a157d 100644 --- a/internal/services/function/function_test.go +++ b/internal/services/function/function_test.go @@ -1,9 +1,11 @@ package function_test import ( + "errors" "fmt" "testing" + "github.com/alexedwards/argon2id" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" functionSDK "github.com/scaleway/scaleway-sdk-go/api/function/v1beta1" @@ -142,7 +144,7 @@ func TestAccFunction_EnvironmentVariables(t *testing.T) { Check: resource.ComposeTestCheckFunc( testAccCheckFunctionExists(tt, "scaleway_function.main"), resource.TestCheckResourceAttr("scaleway_function.main", "environment_variables.test", "test"), - resource.TestCheckResourceAttr("scaleway_function.main", "secret_environment_variables.test_secret", "test_secret"), + passwordMatchHash("scaleway_function.main", "secret_environment_variables.test_secret", "test_secret"), ), }, { @@ -167,7 +169,7 @@ func TestAccFunction_EnvironmentVariables(t *testing.T) { Check: resource.ComposeTestCheckFunc( testAccCheckFunctionExists(tt, "scaleway_function.main"), resource.TestCheckResourceAttr("scaleway_function.main", "environment_variables.foo", "bar"), - resource.TestCheckResourceAttr("scaleway_function.main", "secret_environment_variables.foo_secret", "bar_secret"), + passwordMatchHash("scaleway_function.main", "secret_environment_variables.foo_secret", "bar_secret"), ), }, }, @@ -457,3 +459,23 @@ func testAccCheckFunctionDestroy(tt *acctest.TestTools) resource.TestCheckFunc { return nil } } + +func passwordMatchHash(parent string, key string, password string) resource.TestCheckFunc { + return func(state *terraform.State) error { + rs, ok := state.RootModule().Resources[parent] + if !ok { + return fmt.Errorf("resource container not found: %s", parent) + } + + match, err := argon2id.ComparePasswordAndHash(password, rs.Primary.Attributes[key]) + if err != nil { + return err + } + + if !match { + return errors.New("password and hash do not match") + } + + return nil + } +} diff --git a/internal/services/function/helpers.go b/internal/services/function/helpers_function.go similarity index 84% rename from internal/services/function/helpers.go rename to internal/services/function/helpers_function.go index e8fc1b8c6e..3a352ceb77 100644 --- a/internal/services/function/helpers.go +++ b/internal/services/function/helpers_function.go @@ -7,6 +7,7 @@ import ( "net/http" "net/http/httputil" "os" + "slices" "strings" "time" @@ -174,3 +175,39 @@ func retryCreateFunctionDomain(ctx context.Context, functionAPI *function.API, r } } } + +func flattenFunctionSecrets(secrets []*function.SecretHashedValue) interface{} { + if len(secrets) == 0 { + return nil + } + + flattenedSecrets := make(map[string]interface{}) + for _, secret := range secrets { + flattenedSecrets[secret.Key] = secret.HashedValue + } + + return flattenedSecrets +} + +func filterSecretEnvsToPatch(oldEnv []*function.Secret, newEnv []*function.Secret) []*function.Secret { + toPatch := []*function.Secret{} + // create and update - ignore hashed values + for _, env := range newEnv { + if env.Value != nil && strings.HasPrefix(*env.Value, "$argon2id") { + continue + } + + toPatch = append(toPatch, env) + } + + // delete + for _, env := range oldEnv { + if !slices.ContainsFunc(newEnv, func(s *function.Secret) bool { + return s.Key == env.Key + }) { + toPatch = append(toPatch, &function.Secret{Key: env.Key, Value: nil}) + } + } + + return toPatch +} diff --git a/internal/services/function/helpers_function_internal_test.go b/internal/services/function/helpers_function_internal_test.go new file mode 100644 index 0000000000..5cb87be746 --- /dev/null +++ b/internal/services/function/helpers_function_internal_test.go @@ -0,0 +1,31 @@ +package function + +import ( + "testing" + + functionSDK "github.com/scaleway/scaleway-sdk-go/api/function/v1beta1" + "github.com/stretchr/testify/assert" +) + +func TestFilterSecretEnvsToPatch(t *testing.T) { + testSecret := "test_secret" + secretToDelete := "secret_to_delete" + updatedSecret := "updated_secret" + newSecret := "new_secret" + + oldEnv := []*functionSDK.Secret{ + {Key: testSecret, Value: &testSecret}, + {Key: secretToDelete, Value: &secretToDelete}, + } + newEnv := []*functionSDK.Secret{ + {Key: testSecret, Value: &updatedSecret}, + {Key: newSecret, Value: &newSecret}, + } + + toPatch := filterSecretEnvsToPatch(oldEnv, newEnv) + assert.Equal(t, []*functionSDK.Secret{ + {Key: testSecret, Value: &updatedSecret}, + {Key: newSecret, Value: &newSecret}, + {Key: secretToDelete, Value: nil}, + }, toPatch) +} diff --git a/internal/services/function/namespace.go b/internal/services/function/namespace.go index 86095e52fe..43c8cdeba6 100644 --- a/internal/services/function/namespace.go +++ b/internal/services/function/namespace.go @@ -8,6 +8,7 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" function "github.com/scaleway/scaleway-sdk-go/api/function/v1beta1" "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" @@ -71,7 +72,9 @@ func ResourceNamespace() *schema.Resource { Type: schema.TypeString, ValidateFunc: validation.StringLenBetween(0, 1000), }, - ValidateDiagFunc: validation.MapKeyLenBetween(0, 100), + ValidateDiagFunc: validation.MapKeyLenBetween(0, 100), + DiffSuppressFunc: dsf.CompareArgon2idPasswordAndHash, + DiffSuppressOnRefresh: true, }, "registry_endpoint": { Type: schema.TypeString, @@ -151,6 +154,7 @@ func ResourceFunctionNamespaceRead(ctx context.Context, d *schema.ResourceData, _ = d.Set("region", ns.Region) _ = d.Set("registry_endpoint", ns.RegistryEndpoint) _ = d.Set("registry_namespace_id", ns.RegistryNamespaceID) + _ = d.Set("secret_environment_variables", flattenFunctionSecrets(ns.SecretEnvironmentVariables)) return nil } @@ -190,7 +194,8 @@ func ResourceFunctionNamespaceUpdate(ctx context.Context, d *schema.ResourceData } if d.HasChanges("secret_environment_variables") { - req.SecretEnvironmentVariables = expandFunctionsSecrets(d.Get("secret_environment_variables")) + oldEnv, newEnv := d.GetChange("secret_environment_variables") + req.SecretEnvironmentVariables = filterSecretEnvsToPatch(expandFunctionsSecrets(oldEnv), expandFunctionsSecrets(newEnv)) } if _, err := api.UpdateNamespace(req, scw.WithContext(ctx)); err != nil { diff --git a/internal/services/function/namespace_test.go b/internal/services/function/namespace_test.go index 09f02cb71c..47506be438 100644 --- a/internal/services/function/namespace_test.go +++ b/internal/services/function/namespace_test.go @@ -68,7 +68,7 @@ func TestAccFunctionNamespace_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_function_namespace.main", "description", ""), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "name", "test-cr-ns-01"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "environment_variables.test", "test"), - resource.TestCheckResourceAttr("scaleway_function_namespace.main", "secret_environment_variables.test_secret", "test_secret"), + passwordMatchHash("scaleway_function_namespace.main", "secret_environment_variables.test_secret", "test_secret"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "tags.#", "0"), acctest.CheckResourceAttrUUID("scaleway_function_namespace.main", "id"), @@ -92,7 +92,7 @@ func TestAccFunctionNamespace_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_function_namespace.main", "description", ""), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "name", "test-cr-ns-01"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "environment_variables.test", "test"), - resource.TestCheckResourceAttr("scaleway_function_namespace.main", "secret_environment_variables.test_secret", "test_secret"), + passwordMatchHash("scaleway_function_namespace.main", "secret_environment_variables.test_secret", "test_secret"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "tags.#", "2"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "tags.0", "tag1"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "tags.1", "tag2"), @@ -142,13 +142,16 @@ func TestAccFunctionNamespace_EnvironmentVariables(t *testing.T) { environment_variables = { "test" = "test" } + secret_environment_variables = { + "test_secret" = "test_secret" + } } `, Check: resource.ComposeTestCheckFunc( testAccCheckFunctionNamespaceExists(tt, "scaleway_function_namespace.main"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "name", "tf-env-test"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "environment_variables.test", "test"), - + passwordMatchHash("scaleway_function_namespace.main", "secret_environment_variables.test_secret", "test_secret"), acctest.CheckResourceAttrUUID("scaleway_function_namespace.main", "id"), ), }, @@ -159,13 +162,16 @@ func TestAccFunctionNamespace_EnvironmentVariables(t *testing.T) { environment_variables = { "foo" = "bar" } + secret_environment_variables = { + "test_secret" = "updated_secret" + } } `, Check: resource.ComposeTestCheckFunc( testAccCheckFunctionNamespaceExists(tt, "scaleway_function_namespace.main"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "name", "tf-env-test"), resource.TestCheckResourceAttr("scaleway_function_namespace.main", "environment_variables.foo", "bar"), - + passwordMatchHash("scaleway_function_namespace.main", "secret_environment_variables.test_secret", "updated_secret"), acctest.CheckResourceAttrUUID("scaleway_function_namespace.main", "id"), ), }, diff --git a/internal/services/function/testdata/data-source-function-namespace-basic.cassette.yaml b/internal/services/function/testdata/data-source-function-namespace-basic.cassette.yaml index ea143c8879..976044a560 100644 --- a/internal/services/function/testdata/data-source-function-namespace-basic.cassette.yaml +++ b/internal/services/function/testdata/data-source-function-namespace-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-cr-data","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"test-cr-data","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618746521Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:07.618746521Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376057Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:39.302376057Z"}' headers: Content-Length: - - "464" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:07 GMT + - Mon, 28 Apr 2025 09:22:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12f9bef6-22f7-49e4-b8f5-aa5bd5a374f0 + - d063f5ac-b721-413c-a073-1fe1bf574408 status: 200 OK code: 200 - duration: 844.281708ms + duration: 1.326693916s - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 458 + content_length: 472 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:07.618747Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:39.302376Z"}' headers: Content-Length: - - "458" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:07 GMT + - Mon, 28 Apr 2025 09:22:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 453457fd-6992-45d2-8288-e85273115dcf + - 1db0c314-486f-40de-bbb6-4a9c73bbfc2d status: 200 OK code: 200 - duration: 71.9545ms + duration: 38.736916ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -125,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:09.601811Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "539" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:12 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de83ea36-9627-4e8a-8c2c-9845e4bd060a + - ee11e567-24bc-4c75-adcc-4e5ffe04a555 status: 200 OK code: 200 - duration: 63.523208ms + duration: 52.046125ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -174,18 +174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:17 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28365800-9ee5-4a01-883a-0d4cc979544a + - 38ce9b6e-fb99-414d-a10f-960c47fe8c25 status: 200 OK code: 200 - duration: 57.974291ms + duration: 41.229209ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -223,18 +223,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:17 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6b2aa8e-88dd-483a-a8b0-5d1e99c7a26a + - 1c80bdbb-9a32-4018-8f97-7f42b9c242a4 status: 200 OK code: 200 - duration: 64.261916ms + duration: 45.032041ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -272,18 +272,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"namespaces":[{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}],"total_count":1}' headers: Content-Length: - - "537" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:17 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54891c84-1628-4ec2-88f2-7370d191b01b + - 391daac0-8746-43b2-aa1a-6420806be690 status: 200 OK code: 200 - duration: 69.974542ms + duration: 49.57025ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -321,18 +321,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 551 uncompressed: false - body: '{"namespaces":[{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}],"total_count":1}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "570" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4338045a-93df-4484-904a-3166c720251f + - df159f70-4d03-4ed5-a52d-96157ee49f80 status: 200 OK code: 200 - duration: 137.995958ms + duration: 41.125292ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -370,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fc3382f-c6e8-4808-b068-2221169b5c8d + - 39f2ef4c-97e7-427f-93d0-b5482a809a44 status: 200 OK code: 200 - duration: 80.332ms + duration: 41.935459ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -419,18 +419,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"namespaces":[{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}],"total_count":1}' headers: Content-Length: - - "537" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06f4e7c4-626d-4ed0-b064-9460161bfffb + - 324f23cd-2028-4678-a05d-c2e6a61e3daf status: 200 OK code: 200 - duration: 77.351541ms + duration: 55.754125ms - id: 9 request: proto: HTTP/1.1 @@ -459,8 +459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -468,18 +468,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 259041b4-31e5-42dd-936e-5de954dfd310 + - f61abfbe-32e4-4cf8-92c1-eb779f510fe1 status: 200 OK code: 200 - duration: 76.298541ms + duration: 38.911084ms - id: 10 request: proto: HTTP/1.1 @@ -508,8 +508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -517,18 +517,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 551 uncompressed: false - body: '{"namespaces":[{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}],"total_count":1}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "570" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5fe9557-43e8-4232-8e27-1ce4076a1223 + - 98430efe-dd31-411b-8526-c96c59e8d145 status: 200 OK code: 200 - duration: 132.611584ms + duration: 94.840333ms - id: 11 request: proto: HTTP/1.1 @@ -557,8 +557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -566,18 +566,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 704f6318-e782-4fd4-808a-aa175165428c + - f343d4d7-dcf9-4bc0-a930-b12571fdb965 status: 200 OK code: 200 - duration: 65.3255ms + duration: 45.082125ms - id: 12 request: proto: HTTP/1.1 @@ -606,8 +606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -615,18 +615,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed854934-62ee-4312-b647-67ea368eaf85 + - d143709d-881e-4614-9248-d8d54934fb54 status: 200 OK code: 200 - duration: 67.04925ms + duration: 37.555584ms - id: 13 request: proto: HTTP/1.1 @@ -655,8 +655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -664,18 +664,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"namespaces":[{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}],"total_count":1}' headers: Content-Length: - - "537" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 011be4dc-3c22-415d-8d7a-9aed467a3aed + - a89b0707-dda1-4c02-b9d6-e5d15710c73a status: 200 OK code: 200 - duration: 72.333625ms + duration: 37.598ms - id: 14 request: proto: HTTP/1.1 @@ -704,8 +704,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -713,18 +713,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 551 uncompressed: false - body: '{"namespaces":[{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}],"total_count":1}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "570" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f0c4a43-c5b1-4262-8142-60b7fd14578f + - 937f6bf8-1810-4bda-8061-064494e5dbbd status: 200 OK code: 200 - duration: 117.547959ms + duration: 83.181792ms - id: 15 request: proto: HTTP/1.1 @@ -753,8 +753,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -762,18 +762,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd34bb6-682c-41a2-a700-e932441ba085 + - 7d43abe1-22f0-4dd0-848d-cc6be01f8fbc status: 200 OK code: 200 - duration: 63.548625ms + duration: 40.613958ms - id: 16 request: proto: HTTP/1.1 @@ -802,8 +802,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -811,18 +811,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"namespaces":[{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}],"total_count":1}' headers: Content-Length: - - "537" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ebb137d-af39-479b-9c58-00e9c389277a + - e87cf683-32bd-4677-91dd-08d646cbbccd status: 200 OK code: 200 - duration: 76.033542ms + duration: 48.606542ms - id: 17 request: proto: HTTP/1.1 @@ -851,8 +851,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces?name=test-cr-data&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -860,18 +860,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 570 + content_length: 551 uncompressed: false - body: '{"namespaces":[{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}],"total_count":1}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "570" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3721e3f8-3806-4b3a-a683-4a8d4b876974 + - 24fc8944-7584-48ce-b5e6-fbd538ec91c4 status: 200 OK code: 200 - duration: 122.056ms + duration: 97.327084ms - id: 18 request: proto: HTTP/1.1 @@ -900,8 +900,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -909,18 +909,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 551 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:41.881988Z"}' headers: Content-Length: - - "537" + - "551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a810d6a6-ea00-4cf3-86d9-2b16c6268628 + - b1ee4c11-bb17-4c60-8b44-18d3ae467b7b status: 200 OK code: 200 - duration: 66.796958ms + duration: 81.595792ms - id: 19 request: proto: HTTP/1.1 @@ -949,57 +949,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 537 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.734380Z"}' - headers: - Content-Length: - - "537" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:44:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3fdd4993-ae2d-410f-8545-4a5d7dab4ad1 - status: 200 OK - code: 200 - duration: 78.522958ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: DELETE response: proto: HTTP/2.0 @@ -1007,18 +958,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 557 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.695979453Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:22:45.610589696Z"}' headers: Content-Length: - - "543" + - "557" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:20 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1028,11 +979,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdef8b19-552a-4c4d-95bb-2237684a7f17 + - 510b2ed7-1062-461d-9846-a19c97c4447f status: 200 OK code: 200 - duration: 162.505125ms - - id: 21 + duration: 191.018583ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1047,8 +998,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -1056,18 +1007,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 554 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.618747Z","description":"","environment_variables":{},"error_message":null,"id":"95df5d6e-c6e1-44b6-8d39-48531a80fa15","name":"test-cr-data","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatanhryahzq","registry_namespace_id":"ce23f1f3-2840-4653-8726-d8a28e699128","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.695979Z"}' + body: '{"created_at":"2025-04-28T09:22:39.302376Z","description":"","environment_variables":{},"error_message":null,"id":"9521908a-b95d-413b-9159-661736d82a0e","name":"test-cr-data","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrdatae3yrt7gv","registry_namespace_id":"7a2721ff-5ffe-48f2-b1f6-0c3a0973a967","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:22:45.610590Z"}' headers: Content-Length: - - "540" + - "554" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:20 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1077,11 +1028,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af11f91d-54e2-4f3d-982d-9a846727b848 + - b9b26873-240b-4c29-9196-9f76a5ee10d8 status: 200 OK code: 200 - duration: 68.846209ms - - id: 22 + duration: 38.900792ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1096,8 +1047,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: GET response: proto: HTTP/2.0 @@ -1116,7 +1067,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:25 GMT + - Mon, 28 Apr 2025 09:22:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1126,11 +1077,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb37da80-e101-417e-ab85-53d691c3074e + - 997197ab-8990-4831-9ad1-4461738ae6d3 status: 404 Not Found code: 404 - duration: 25.630667ms - - id: 23 + duration: 21.568417ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1145,8 +1096,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: DELETE response: proto: HTTP/2.0 @@ -1165,7 +1116,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:25 GMT + - Mon, 28 Apr 2025 09:22:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1175,11 +1126,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad8470c9-6a3f-4e66-a3ee-68c5415c8283 + - 4dc6b8f4-91c7-444c-a027-c4b9eaa3bb3e status: 404 Not Found code: 404 - duration: 26.71ms - - id: 24 + duration: 65.899292ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1194,8 +1145,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: DELETE response: proto: HTTP/2.0 @@ -1214,7 +1165,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:25 GMT + - Mon, 28 Apr 2025 09:22:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1224,11 +1175,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f51a08c5-453b-493d-a002-002076fda9c7 + - 93594db6-bc29-4e60-bed4-a77f810091b7 status: 404 Not Found code: 404 - duration: 25.305166ms - - id: 25 + duration: 25.278291ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1243,8 +1194,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/95df5d6e-c6e1-44b6-8d39-48531a80fa15 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/9521908a-b95d-413b-9159-661736d82a0e method: DELETE response: proto: HTTP/2.0 @@ -1263,7 +1214,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:25 GMT + - Mon, 28 Apr 2025 09:22:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1273,7 +1224,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4930ee59-543f-4536-9ac5-2ec78d2513eb + - 6e820359-efff-4c2c-b5d8-19029e9eb2b3 status: 404 Not Found code: 404 - duration: 24.703541ms + duration: 32.661583ms diff --git a/internal/services/function/testdata/function-environment-variables.cassette.yaml b/internal/services/function/testdata/function-environment-variables.cassette.yaml index 2336d590e1..98f8a56b51 100644 --- a/internal/services/function/testdata/function-environment-variables.cassette.yaml +++ b/internal/services/function/testdata/function-environment-variables.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 160 + content_length: 159 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-func-naughty-herschel","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"tf-func-reverent-kepler","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 489 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657292Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:52.814657292Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069764971Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T08:37:13.069764971Z"}' headers: Content-Length: - - "476" + - "489" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:52 GMT + - Mon, 28 Apr 2025 08:37:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58d1abdc-d722-4ea8-b5b9-5fd139c4918c + - 8424688e-b70a-475b-ab70-93b7e880435c status: 200 OK code: 200 - duration: 584.419583ms + duration: 765.936958ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 470 + content_length: 483 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:52.814657Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T08:37:13.069765Z"}' headers: Content-Length: - - "470" + - "483" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:53 GMT + - Mon, 28 Apr 2025 08:37:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60d21a62-6126-4b8a-aab2-21e2a8b1970f + - 7e604913-5d2e-4147-86a3-81b39e43f706 status: 200 OK code: 200 - duration: 83.03325ms + duration: 42.471917ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 572 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:54.774320Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T08:37:16.558315Z"}' headers: Content-Length: - - "561" + - "572" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:58 GMT + - Mon, 28 Apr 2025 08:37:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03145afc-b2d2-4ff7-9699-31190e40062f + - 325e75e6-7f62-4842-af60-83d27e182806 status: 200 OK code: 200 - duration: 61.129167ms + duration: 46.844958ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 572 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:45:01.112386Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T08:37:16.558315Z"}' headers: Content-Length: - - "559" + - "572" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:03 GMT + - Mon, 28 Apr 2025 08:37:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,48 +195,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e57fc55c-9319-48fa-8d13-1e0d36072171 + - eebd590b-eae1-45a6-875c-8d7087bb6c24 status: 200 OK code: 200 - duration: 92.384209ms + duration: 40.816167ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 354 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","environment_variables":{"test":"test"},"min_scale":0,"max_scale":20,"runtime":"node22","memory_limit":256,"handler":"handler.handle","privacy":"private","secret_environment_variables":[{"key":"test_secret","value":"test_secret"}],"http_option":"enabled","sandbox":"unknown_sandbox"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 844 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:45:01.112386Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886970757Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$XjeG4QgvzHenESD5gjZZIA$3kWeeaIrcLwE0t4eCqUkmDQeFiWNSP13A28qDoO3rro","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-04-28T08:37:18.886970757Z"}' headers: Content-Length: - - "559" + - "844" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:03 GMT + - Mon, 28 Apr 2025 08:37:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,50 +246,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b764d63d-c1dd-4221-a275-cc51cc204046 + - b5432b2e-ffcc-4abc-9e64-14c15ce91e72 status: 200 OK code: 200 - duration: 70.011333ms + duration: 689.772834ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 354 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","environment_variables":{"test":"test"},"min_scale":0,"max_scale":20,"runtime":"node22","memory_limit":256,"handler":"handler.handle","privacy":"private","secret_environment_variables":[{"key":"test_secret","value":"test_secret"}],"http_option":"enabled","sandbox":"unknown_sandbox"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 819 + content_length: 838 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398373Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:45:03.861398373Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$XjeG4QgvzHenESD5gjZZIA$3kWeeaIrcLwE0t4eCqUkmDQeFiWNSP13A28qDoO3rro","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-04-28T08:37:18.886971Z"}' headers: Content-Length: - - "819" + - "838" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:03 GMT + - Mon, 28 Apr 2025 08:37:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a21261cf-7d47-49a3-8998-225ac2fd128f + - 470ec595-462a-4c2b-897a-82d966324c22 status: 200 OK code: 200 - duration: 438.206125ms + duration: 54.056666ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 813 + content_length: 838 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:45:03.861398Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$XjeG4QgvzHenESD5gjZZIA$3kWeeaIrcLwE0t4eCqUkmDQeFiWNSP13A28qDoO3rro","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-04-28T08:37:18.886971Z"}' headers: Content-Length: - - "813" + - "838" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:03 GMT + - Mon, 28 Apr 2025 08:37:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddf351ac-19c0-4160-8111-2767a0c04a0f + - 49d37bb8-0b92-4e58-b5f1-bbe7822babbf status: 200 OK code: 200 - duration: 76.88775ms + duration: 49.910417ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 813 + content_length: 838 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:45:03.861398Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$XjeG4QgvzHenESD5gjZZIA$3kWeeaIrcLwE0t4eCqUkmDQeFiWNSP13A28qDoO3rro","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-04-28T08:37:18.886971Z"}' headers: Content-Length: - - "813" + - "838" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:04 GMT + - Mon, 28 Apr 2025 08:37:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60ea9f53-cc19-4298-b436-63b70df0117a + - c836d84d-4a5e-428d-8b8a-aba52d7f2243 status: 200 OK code: 200 - duration: 77.83975ms + duration: 48.699084ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 813 + content_length: 572 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:45:03.861398Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T08:37:16.558315Z"}' headers: Content-Length: - - "813" + - "572" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:04 GMT + - Mon, 28 Apr 2025 08:37:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74bb25ea-b13f-4ea4-932f-bb69b5325555 + - a6a8f6bf-cadd-4122-a2dd-60c361488e19 status: 200 OK code: 200 - duration: 113.534667ms + duration: 40.653083ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 838 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:45:01.112386Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$XjeG4QgvzHenESD5gjZZIA$3kWeeaIrcLwE0t4eCqUkmDQeFiWNSP13A28qDoO3rro","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-04-28T08:37:18.886971Z"}' headers: Content-Length: - - "559" + - "838" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:05 GMT + - Mon, 28 Apr 2025 08:37:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46d9f4a0-a1c6-4f95-80f2-c07cc5a68ef3 + - fb755597-b2cf-4c28-b801-8edc0f7ffa7d status: 200 OK code: 200 - duration: 73.31575ms + duration: 52.471875ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 813 + content_length: 572 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:45:03.861398Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T08:37:16.558315Z"}' headers: Content-Length: - - "813" + - "572" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:05 GMT + - Mon, 28 Apr 2025 08:37:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2773d8a9-1906-429b-b361-5f7a3704c90c + - 8040c231-6321-4235-b9bc-1cc51188936a status: 200 OK code: 200 - duration: 71.78125ms + duration: 45.518375ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 838 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:45:01.112386Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$XjeG4QgvzHenESD5gjZZIA$3kWeeaIrcLwE0t4eCqUkmDQeFiWNSP13A28qDoO3rro","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-04-28T08:37:18.886971Z"}' headers: Content-Length: - - "559" + - "838" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:05 GMT + - Mon, 28 Apr 2025 08:37:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a68db4b4-0930-4c96-8a5e-838bd912e0a1 + - 5f950bb0-b0ff-4a61-b43a-a683804b2766 status: 200 OK code: 200 - duration: 95.315458ms + duration: 52.16725ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 813 + content_length: 838 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:45:03.861398Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$XjeG4QgvzHenESD5gjZZIA$3kWeeaIrcLwE0t4eCqUkmDQeFiWNSP13A28qDoO3rro","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-04-28T08:37:18.886971Z"}' headers: Content-Length: - - "813" + - "838" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:05 GMT + - Mon, 28 Apr 2025 08:37:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,48 +638,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 873fbd18-89f0-409c-a32f-ffdf91b873da + - c1eb84d0-8a52-45aa-9ea1-1c615df854ac status: 200 OK code: 200 - duration: 101.63375ms + duration: 55.844ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 269 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"environment_variables":{"foo":"bar"},"runtime":"unknown_runtime","privacy":"unknown_privacy","secret_environment_variables":[{"key":"foo_secret","value":"bar_secret"},{"key":"test_secret","value":null}],"http_option":"unknown_http_option","sandbox":"unknown_sandbox"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 813 + content_length: 838 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"test":"test"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"}],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:45:03.861398Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$qeoLW0cT3iRyBgAMm7acNQ$n3vjIhLoiDgXJJF3BBckw4Z9e4HJno/SQkP1ntlgIkI","key":"foo_secret"}],"status":"pending","timeout":"300s","updated_at":"2025-04-28T08:37:20.657402177Z"}' headers: Content-Length: - - "813" + - "838" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:06 GMT + - Mon, 28 Apr 2025 08:37:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,50 +689,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 774af9ec-a002-4721-838c-78a9066a1610 + - 101afaa8-b2f7-48f2-baad-f0b99673f015 status: 200 OK code: 200 - duration: 75.897ms + duration: 566.0215ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 234 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"environment_variables":{"foo":"bar"},"runtime":"unknown_runtime","privacy":"unknown_privacy","secret_environment_variables":[{"key":"foo_secret","value":"bar_secret"}],"http_option":"unknown_http_option","sandbox":"unknown_sandbox"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 950 + content_length: 835 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:45:07.167257016Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$qeoLW0cT3iRyBgAMm7acNQ$n3vjIhLoiDgXJJF3BBckw4Z9e4HJno/SQkP1ntlgIkI","key":"foo_secret"}],"status":"pending","timeout":"300s","updated_at":"2025-04-28T08:37:20.657402Z"}' headers: Content-Length: - - "950" + - "835" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:07 GMT + - Mon, 28 Apr 2025 08:37:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ac26150-5b9c-4e9b-a37a-41710e1dd789 + - a3a5a785-7839-4c9f-b6c8-49b83f2da531 status: 200 OK code: 200 - duration: 421.992166ms + duration: 53.645292ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -766,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 845 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:45:07.167257Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":"internal error","handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$qeoLW0cT3iRyBgAMm7acNQ$n3vjIhLoiDgXJJF3BBckw4Z9e4HJno/SQkP1ntlgIkI","key":"foo_secret"}],"status":"error","timeout":"300s","updated_at":"2025-04-28T08:37:26.577013Z"}' headers: Content-Length: - - "947" + - "845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:08 GMT + - Mon, 28 Apr 2025 08:37:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a690d5f-21db-4af5-b795-4da8ce936739 + - efb83c5b-318b-4d0a-b737-a2d9414802b5 status: 200 OK code: 200 - duration: 70.78ms + duration: 57.808958ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -815,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 845 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:45:07.167257Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":"internal error","handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$qeoLW0cT3iRyBgAMm7acNQ$n3vjIhLoiDgXJJF3BBckw4Z9e4HJno/SQkP1ntlgIkI","key":"foo_secret"}],"status":"error","timeout":"300s","updated_at":"2025-04-28T08:37:26.577013Z"}' headers: Content-Length: - - "947" + - "845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:13 GMT + - Mon, 28 Apr 2025 08:37:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29722e1d-92b4-45c9-b270-b8c7bddfbf8a + - e551dc1e-22ea-4d72-8f94-d006b69dbae4 status: 200 OK code: 200 - duration: 86.390459ms + duration: 54.824833ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -864,20 +864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 572 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:45:07.167257Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T08:37:16.558315Z"}' headers: Content-Length: - - "947" + - "572" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:18 GMT + - Mon, 28 Apr 2025 08:37:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c5b343b-cda4-424c-a710-9f29daa5e572 + - d3063b71-aee5-4d26-a0be-feea4347e85c status: 200 OK code: 200 - duration: 88.2135ms + duration: 36.908375ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -913,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 947 + content_length: 845 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:45:07.167257Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":"internal error","handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$qeoLW0cT3iRyBgAMm7acNQ$n3vjIhLoiDgXJJF3BBckw4Z9e4HJno/SQkP1ntlgIkI","key":"foo_secret"}],"status":"error","timeout":"300s","updated_at":"2025-04-28T08:37:26.577013Z"}' headers: Content-Length: - - "947" + - "845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:23 GMT + - Mon, 28 Apr 2025 08:37:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b49413-4f98-4630-ab7a-8e397905bcf3 + - 14f4d7df-f8e0-4d46-9612-7e7fae86c03f status: 200 OK code: 200 - duration: 86.218042ms + duration: 52.735041ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: GET response: proto: HTTP/2.0 @@ -962,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 957 + content_length: 845 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":"internal error","handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:45:25.077535Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":"internal error","handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$qeoLW0cT3iRyBgAMm7acNQ$n3vjIhLoiDgXJJF3BBckw4Z9e4HJno/SQkP1ntlgIkI","key":"foo_secret"}],"status":"error","timeout":"300s","updated_at":"2025-04-28T08:37:26.577013Z"}' headers: Content-Length: - - "957" + - "845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:28 GMT + - Mon, 28 Apr 2025 08:37:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7af8259-f4ff-4b57-9d2e-2b747dba4748 + - f26bb88b-71ba-4be9-a68c-7ea11180f02e status: 200 OK code: 200 - duration: 74.795667ms + duration: 56.183917ms - id: 20 request: proto: HTTP/1.1 @@ -1002,29 +1002,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 957 + content_length: 839 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":"internal error","handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:45:25.077535Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-04-28T08:37:18.886971Z","description":"","domain_name":"tffuncreverentkeplertbfkmeps-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$qeoLW0cT3iRyBgAMm7acNQ$n3vjIhLoiDgXJJF3BBckw4Z9e4HJno/SQkP1ntlgIkI","key":"foo_secret"}],"status":"deleting","timeout":"300s","updated_at":"2025-04-28T08:37:27.623771408Z"}' headers: Content-Length: - - "957" + - "839" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:28 GMT + - Mon, 28 Apr 2025 08:37:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d87c736-508c-4187-ae1f-eb0f1db894e4 + - c2c87576-856d-421b-8299-026ef9fd20e9 status: 200 OK code: 200 - duration: 84.626584ms + duration: 161.255167ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -1060,20 +1060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 572 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:45:01.112386Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T08:37:16.558315Z"}' headers: Content-Length: - - "559" + - "572" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:29 GMT + - Mon, 28 Apr 2025 08:37:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3383e6a9-da18-44b4-86de-e9984abd5c66 + - 7c15c7ae-6a1d-48ac-8d1c-46f12ba608f3 status: 200 OK code: 200 - duration: 72.616084ms + duration: 37.653583ms - id: 22 request: proto: HTTP/1.1 @@ -1100,29 +1100,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 957 + content_length: 578 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":"internal error","handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:45:25.077535Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T08:37:27.808204145Z"}' headers: Content-Length: - - "957" + - "578" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:29 GMT + - Mon, 28 Apr 2025 08:37:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec855746-a85e-4625-9c68-6c8427924e51 + - 2416eea6-5a85-4f7a-bdfa-e313d2bdb840 status: 200 OK code: 200 - duration: 69.445125ms + duration: 205.745083ms - id: 23 request: proto: HTTP/1.1 @@ -1149,8 +1149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -1158,20 +1158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 957 + content_length: 575 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":"internal error","handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:45:25.077535Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T08:37:27.808204Z"}' headers: Content-Length: - - "957" + - "575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:30 GMT + - Mon, 28 Apr 2025 08:37:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,10 +1179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c3a4060-a68d-46c2-8f58-3a1e30ef6cfa + - f04ba4ec-043e-4c76-a822-ba02d1e8f4ca status: 200 OK code: 200 - duration: 127.272042ms + duration: 41.814042ms - id: 24 request: proto: HTTP/1.1 @@ -1198,29 +1198,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 951 + content_length: 575 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:45:03.861398Z","description":"","domain_name":"tffuncnaughtyherschepb5yohr0-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{"foo":"bar"},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"8279445a-9d27-4948-a935-55263f6d34f0","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$oC+NLBDc2ehBGrP1u62pGg$dmizifX0187bHsas2djOzuzBx9GxHVM27pUi8s+Y1nY","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ATisbGztOs/wG8FRsQr0mg$6V4jmhHln4PRd3+8zX+hZDkLydBMEIyXXZd/XV5iS6E","key":"foo_secret"}],"status":"deleting","timeout":"300s","updated_at":"2025-01-24T15:45:30.968432128Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T08:37:27.808204Z"}' headers: Content-Length: - - "951" + - "575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:31 GMT + - Mon, 28 Apr 2025 08:37:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0acd8610-ddc8-4987-bf2a-e503a508779d + - 6fc030ac-484f-4811-8342-8f9a83ee67e1 status: 200 OK code: 200 - duration: 137.515167ms + duration: 95.184583ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1247,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -1256,20 +1256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 575 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:45:01.112386Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T08:37:27.808204Z"}' headers: Content-Length: - - "559" + - "575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:31 GMT + - Mon, 28 Apr 2025 08:37:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78608461-0833-4035-88b6-7dea2a19cbb0 + - d4b5beba-a17e-4a81-8c2c-0adf65f6298e status: 200 OK code: 200 - duration: 65.362125ms + duration: 34.616417ms - id: 26 request: proto: HTTP/1.1 @@ -1296,29 +1296,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 575 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:45:31.152784633Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T08:37:27.808204Z"}' headers: Content-Length: - - "565" + - "575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:31 GMT + - Mon, 28 Apr 2025 08:37:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,10 +1326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 128071a9-2ba9-4b3f-8d47-977aeb701f88 + - f1ae99c3-ad3e-4ff8-af0c-1256d5a7da27 status: 200 OK code: 200 - duration: 222.494334ms + duration: 41.26325ms - id: 27 request: proto: HTTP/1.1 @@ -1345,8 +1345,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -1354,20 +1354,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 562 + content_length: 575 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:45:31.152785Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T08:37:27.808204Z"}' headers: Content-Length: - - "562" + - "575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:31 GMT + - Mon, 28 Apr 2025 08:37:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,10 +1375,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2c9859e-e35c-4aba-a386-6500483877af + - 36af2ef8-0296-404f-bf46-39f8d1adf78f status: 200 OK code: 200 - duration: 67.501541ms + duration: 46.745166ms - id: 28 request: proto: HTTP/1.1 @@ -1394,8 +1394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -1403,20 +1403,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 562 + content_length: 575 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:45:31.152785Z"}' + body: '{"created_at":"2025-04-28T08:37:13.069765Z","description":"","environment_variables":{},"error_message":null,"id":"37d7e438-1812-4d7b-b9f1-da7e3d5a18fb","name":"tf-func-reverent-kepler","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncreverentkeplertbfkmeps","registry_namespace_id":"031bda64-f468-4c05-b60a-24fc9a832406","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T08:37:27.808204Z"}' headers: Content-Length: - - "562" + - "575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:36 GMT + - Mon, 28 Apr 2025 08:37:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1424,10 +1424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ebe9ab9-d6ea-488a-8b5a-79dbbd192b31 + - e1e6296c-fd1f-41a8-ac02-96af473ccd90 status: 200 OK code: 200 - duration: 78.131125ms + duration: 41.835458ms - id: 29 request: proto: HTTP/1.1 @@ -1443,253 +1443,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:45:31.152785Z"}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:45:41 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 92e70c5c-f173-4dbe-b88b-3db7b8b2130b - status: 200 OK - code: 200 - duration: 73.482ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:45:31.152785Z"}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:45:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cbe8b7fd-3337-47c5-bbba-4b1a6f274ce9 - status: 200 OK - code: 200 - duration: 74.012542ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:45:31.152785Z"}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:45:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ced8bc3b-8356-4a59-aeb5-1cc47134c6ca - status: 200 OK - code: 200 - duration: 79.248ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:45:31.152785Z"}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:45:56 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - af271294-5479-4d8e-bcef-e517250ffb27 - status: 200 OK - code: 200 - duration: 72.763584ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:52.814657Z","description":"","environment_variables":{},"error_message":null,"id":"8279445a-9d27-4948-a935-55263f6d34f0","name":"tf-func-naughty-herschel","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncnaughtyherschepb5yohr0","registry_namespace_id":"fe2e24fd-b3ea-4b2c-b379-6fa9193d7898","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:45:31.152785Z"}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:46:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d02aa3cd-304d-462f-932b-9fc1e412eefb - status: 200 OK - code: 200 - duration: 68.390875ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/8279445a-9d27-4948-a935-55263f6d34f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/37d7e438-1812-4d7b-b9f1-da7e3d5a18fb method: GET response: proto: HTTP/2.0 @@ -1708,9 +1463,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:46:06 GMT + - Mon, 28 Apr 2025 08:37:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1718,11 +1473,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4ae0441-1cc6-495c-85ae-e8de2dbe45f0 + - 53b3db35-5f14-4908-a68a-8f604dd0da05 status: 404 Not Found code: 404 - duration: 146.371875ms - - id: 35 + duration: 22.583ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1737,8 +1492,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/a28ad926-d0fe-46d6-8c1d-5edc11fe0c4f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/4ba9bbb1-ac4d-4ed0-a379-23c5c79a709e method: DELETE response: proto: HTTP/2.0 @@ -1757,9 +1512,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:46:07 GMT + - Mon, 28 Apr 2025 08:37:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1767,7 +1522,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c680d6f6-625c-445e-855c-f998335664a1 + - 50cc2ec4-73f2-4b61-9f99-76cd0f52965e status: 404 Not Found code: 404 - duration: 30.597625ms + duration: 27.476417ms diff --git a/internal/services/function/testdata/function-namespace-basic.cassette.yaml b/internal/services/function/testdata/function-namespace-basic.cassette.yaml index 2f49f1114f..e2108d531a 100644 --- a/internal/services/function/testdata/function-namespace-basic.cassette.yaml +++ b/internal/services/function/testdata/function-namespace-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-cr-ns-01","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":["tag1","tag2"]}' + body: '{"name":"test-cr-ns-01","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[],"tags":["tag1","tag2"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 493 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888132981Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:31.888132981Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494216669Z","description":"","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:40.494216669Z"}' headers: Content-Length: - - "478" + - "493" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:31 GMT + - Mon, 28 Apr 2025 09:22:40 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a4e8667-1834-4f3d-83b6-03b4eb808a06 + - ea5b22cb-1bb9-4566-91fd-aa632aafeab5 status: 200 OK code: 200 - duration: 260.716292ms + duration: 2.533517125s - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 487 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:31.888133Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:40.494217Z"}' headers: Content-Length: - - "472" + - "487" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:31 GMT + - Mon, 28 Apr 2025 09:22:40 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1da15ff2-6cd3-42cf-a210-b57a131003e8 + - af611572-e87d-45bc-bc4f-38b40a9b449e status: 200 OK code: 200 - duration: 76.558042ms + duration: 48.9635ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -125,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 566 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:34.723784Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:43.605084Z"}' headers: Content-Length: - - "472" + - "566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:37 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 696ade10-d6b8-40f0-beee-8f24c6d5b2ea + - 44c8bfea-5ecb-45ed-828c-5a7d7882b952 status: 200 OK code: 200 - duration: 63.789875ms + duration: 40.482041ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -174,18 +174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 553 + content_length: 566 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"pending","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:40.209181Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:43.605084Z"}' headers: Content-Length: - - "553" + - "566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:42 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37f4d4bb-9cd6-4bbf-93af-7d46ad03d8b6 + - 2c42455d-06b9-41ae-8846-e98eeae1415f status: 200 OK code: 200 - duration: 58.814334ms + duration: 98.836542ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -223,18 +223,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 551 + content_length: 566 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:43.694896Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:43.605084Z"}' headers: Content-Length: - - "551" + - "566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:47 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6a9b2d0-5872-45a7-8559-c5f5d94ff706 + - 773e2d0d-68c8-4cd8-a4c6-a1292e58a371 status: 200 OK code: 200 - duration: 63.086167ms + duration: 44.297041ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -272,18 +272,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 551 + content_length: 566 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:43.694896Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:43.605084Z"}' headers: Content-Length: - - "551" + - "566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:47 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9cca1fb-b5e9-4a7d-8caf-069f7e824a3b + - cc1724da-91d3-4908-a76c-4aab6c8890f5 status: 200 OK code: 200 - duration: 72.214625ms + duration: 98.133958ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -321,18 +321,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 551 + content_length: 566 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:43.694896Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:43.605084Z"}' headers: Content-Length: - - "551" + - "566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:47 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d726591b-39e2-4b76-a713-fa0a5f91b743 + - e0ad6ffb-b127-4f77-be23-6758023ef2c6 status: 200 OK code: 200 - duration: 69.223583ms + duration: 39.063375ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -370,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 551 + content_length: 566 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:43.694896Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:43.605084Z"}' headers: Content-Length: - - "551" + - "566" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:48 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -391,109 +391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b025dec-68c1-4960-a7a8-8de9dc47e88a + - 4f307332-d279-4c66-b026-68bd5aeef6cb status: 200 OK code: 200 - duration: 434.937625ms + duration: 101.122ms - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 551 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:43.694896Z"}' - headers: - Content-Length: - - "551" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:44:49 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 12ba3308-4dca-43b7-9689-1471dafc494f - status: 200 OK - code: 200 - duration: 61.244708ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 551 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:44:43.694896Z"}' - headers: - Content-Length: - - "551" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:44:50 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3330c3ee-ceed-4916-801d-213a18ff8783 - status: 200 OK - code: 200 - duration: 63.59325ms - - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -510,8 +412,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: PATCH response: proto: HTTP/2.0 @@ -519,18 +421,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 567 + content_length: 581 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:50.147736425Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:46.591763228Z"}' headers: Content-Length: - - "567" + - "581" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:50 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -540,11 +442,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50598c9f-e6a3-4afb-b654-2c5f4279213b + - 0217a115-268c-4afe-8e67-7cf5522b3cf1 status: 200 OK code: 200 - duration: 79.391458ms - - id: 11 + duration: 60.779625ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -559,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -568,18 +470,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 564 + content_length: 578 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:50.147736Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:46.591763Z"}' headers: Content-Length: - - "564" + - "578" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:50 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -589,11 +491,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bc22e0e-f72f-4eb4-b190-9ae43790ca05 + - 4fef9e88-363a-4e12-8a51-ea471e47246c status: 200 OK code: 200 - duration: 65.172375ms - - id: 12 + duration: 52.158334ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -608,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -617,18 +519,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 564 + content_length: 578 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:50.147736Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:46.591763Z"}' headers: Content-Length: - - "564" + - "578" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:50 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -638,11 +540,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f851888-10db-4e68-b215-594c7bd042bf + - 52130075-48f5-4823-9ef3-5588442b5a41 status: 200 OK code: 200 - duration: 74.22175ms - - id: 13 + duration: 92.636166ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -657,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -666,18 +568,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 564 + content_length: 578 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:50.147736Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:46.591763Z"}' headers: Content-Length: - - "564" + - "578" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:51 GMT + - Mon, 28 Apr 2025 09:22:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -687,11 +589,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32bda7bf-b33f-49c9-8daf-831b71d4652e + - eb1ab234-f6b3-459d-a7d2-67a1ca73f860 status: 200 OK code: 200 - duration: 90.677458ms - - id: 14 + duration: 360.20825ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -706,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -715,18 +617,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 564 + content_length: 578 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:50.147736Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:46.591763Z"}' headers: Content-Length: - - "564" + - "578" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:51 GMT + - Mon, 28 Apr 2025 09:22:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -736,11 +638,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2051c813-dded-4efc-aeee-6acfb8b53ecc + - f7d4185d-ed89-452d-88b5-cf40eb7169b8 status: 200 OK code: 200 - duration: 59.436625ms - - id: 15 + duration: 35.451667ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -755,8 +657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -764,18 +666,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 564 + content_length: 578 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:50.147736Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"test function namespace 01","environment_variables":{},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:46.591763Z"}' headers: Content-Length: - - "564" + - "578" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:52 GMT + - Mon, 28 Apr 2025 09:22:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -785,11 +687,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff9aadcf-077a-49bf-b6aa-9349b0982ad8 + - 69446bc3-deaa-40b4-8d85-3db24e8ba1f4 status: 200 OK code: 200 - duration: 66.35325ms - - id: 16 + duration: 85.425625ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -806,8 +708,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: PATCH response: proto: HTTP/2.0 @@ -815,18 +717,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:52.983294356Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:48.243990782Z"}' headers: Content-Length: - - "692" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:53 GMT + - Mon, 28 Apr 2025 09:22:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -836,11 +738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c902e8f9-36bc-49d3-89e3-68243cb4bec7 + - a2083c0e-ad4f-44cd-b4f1-0918e55a1571 status: 200 OK code: 200 - duration: 512.887833ms - - id: 17 + duration: 562.586083ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -855,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -864,18 +766,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 689 + content_length: 704 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:52.983294Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:48.243991Z"}' headers: Content-Length: - - "689" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:53 GMT + - Mon, 28 Apr 2025 09:22:48 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -885,11 +787,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 594f632d-eb44-4252-a4f3-c42f38652190 + - 7e8480e1-a494-4c88-ac8a-bcf83c1d33f9 status: 200 OK code: 200 - duration: 67.057833ms - - id: 18 + duration: 91.182042ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -904,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -913,18 +815,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:53.353828Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:48.902011Z"}' headers: Content-Length: - - "687" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:58 GMT + - Mon, 28 Apr 2025 09:22:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -934,11 +836,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ae8ac1a-63ce-4b19-8fdb-da1aad56d0d9 + - 31430b9e-0d73-40a3-9a4f-858fb52c9b2e status: 200 OK code: 200 - duration: 78.292917ms - - id: 19 + duration: 32.854916ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -953,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -962,18 +864,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:53.353828Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:48.902011Z"}' headers: Content-Length: - - "687" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:58 GMT + - Mon, 28 Apr 2025 09:22:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -983,11 +885,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73413e8b-2eb6-4202-a24d-85e1b74412a2 + - 40815627-38fa-4265-812f-0995c7eb2142 status: 200 OK code: 200 - duration: 80.071375ms - - id: 20 + duration: 61.984333ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1002,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1011,18 +913,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:53.353828Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:48.902011Z"}' headers: Content-Length: - - "687" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:59 GMT + - Mon, 28 Apr 2025 09:22:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1032,11 +934,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73750d82-2545-4030-a9b5-0f100472ae5b + - 9a318eae-59b2-4244-a5a0-6eaf664eb264 status: 200 OK code: 200 - duration: 69.010542ms - - id: 21 + duration: 39.664958ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1051,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1060,18 +962,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:53.353828Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:48.902011Z"}' headers: Content-Length: - - "687" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:59 GMT + - Mon, 28 Apr 2025 09:22:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1081,11 +983,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 429f0444-2fa5-4509-aef7-238effdb6b49 + - a4e0fcd1-a42f-459e-ac8a-37793ab9289f status: 200 OK code: 200 - duration: 63.266875ms - - id: 22 + duration: 40.167583ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1100,8 +1002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1109,18 +1011,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:53.353828Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:48.902011Z"}' headers: Content-Length: - - "687" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:00 GMT + - Mon, 28 Apr 2025 09:22:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1130,11 +1032,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8800bb12-cf92-4c3e-a0ce-2e1d609d12bc + - d430714b-59b6-4d65-98a3-31233f105cd9 status: 200 OK code: 200 - duration: 81.16675ms - - id: 23 + duration: 52.218375ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1151,8 +1053,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: PATCH response: proto: HTTP/2.0 @@ -1160,18 +1062,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 719 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:45:00.865700333Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:54.480942521Z"}' headers: Content-Length: - - "703" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:00 GMT + - Mon, 28 Apr 2025 09:22:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1181,11 +1083,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 606cea07-63a1-407e-a1d8-b06d5eac025a + - 31eff47c-b4df-4584-9e00-d5117cd87253 status: 200 OK code: 200 - duration: 82.341958ms - - id: 24 + duration: 64.07775ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1200,8 +1102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1209,18 +1111,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:45:00.865700Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:54.480943Z"}' headers: Content-Length: - - "700" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:00 GMT + - Mon, 28 Apr 2025 09:22:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1230,11 +1132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4cb7740-3c3d-4b5c-8039-9351aa2f0dc7 + - 167911b7-73f8-41e3-9b61-ab57db3d2703 status: 200 OK code: 200 - duration: 79.318417ms - - id: 25 + duration: 37.39025ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1249,8 +1151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1258,18 +1160,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:45:00.865700Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:54.480943Z"}' headers: Content-Length: - - "700" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:01 GMT + - Mon, 28 Apr 2025 09:22:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1279,11 +1181,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb30b668-e9f6-41ec-aae9-e2f9dc2ffe49 + - 4a1318b1-aa91-4f86-b949-250441a6f245 status: 200 OK code: 200 - duration: 69.51775ms - - id: 26 + duration: 39.613875ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1298,8 +1200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1307,18 +1209,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:45:00.865700Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:54.480943Z"}' headers: Content-Length: - - "700" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:01 GMT + - Mon, 28 Apr 2025 09:22:54 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1328,11 +1230,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e332e7ae-5a93-45f3-acf9-d6641d330db1 + - c0565cc2-3637-4da9-bc15-51cae2a22ea6 status: 200 OK code: 200 - duration: 185.867958ms - - id: 27 + duration: 41.66775ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1347,8 +1249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1356,18 +1258,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 716 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:45:00.865700Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:54.480943Z"}' headers: Content-Length: - - "700" + - "716" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:02 GMT + - Mon, 28 Apr 2025 09:22:55 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1377,11 +1279,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e562add9-f93f-41b3-9ae8-e7a8dbde2335 + - dff9f8f5-6458-4fd9-a630-5a65e8210f98 status: 200 OK code: 200 - duration: 66.459834ms - - id: 28 + duration: 37.281458ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1396,8 +1298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: DELETE response: proto: HTTP/2.0 @@ -1405,18 +1307,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 722 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:45:02.931100174Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:55.224263394Z"}' headers: Content-Length: - - "706" + - "722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:03 GMT + - Mon, 28 Apr 2025 09:22:55 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1426,11 +1328,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30be2748-42c2-44e2-8df2-3a647106de4c + - abd8dcb5-7a1c-4c55-a6aa-a873861604b2 status: 200 OK code: 200 - duration: 179.871458ms - - id: 29 + duration: 198.518708ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1445,8 +1347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1454,18 +1356,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 719 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.888133Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"248f8014-2a19-4722-a7ae-d6ccc0873d5e","name":"test-cr-ns-01","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01j9aq8k1b","registry_namespace_id":"7757c7d0-fe8b-4ef5-a91c-2698913229e9","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$iEadpTYP20gOzv7d5svpag$oCjAwjpWPArmd0IY1ew7mus3CLd82VDLotBlv28zKtw","key":"test_secret"}],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:45:02.931100Z"}' + body: '{"created_at":"2025-04-28T09:22:40.494217Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"fc04be20-4e4e-453b-9ad3-525f34966b7c","name":"test-cr-ns-01","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtestcrns01t9lb5wey","registry_namespace_id":"ad8d9981-507f-4741-9890-8f5a1a560971","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$JeWATXYOwSI3HoSX0pOEKw$5+JS8+EXe5OepynxwiA6e2fL9Eyi8RM6H1b8xnv7EZM","key":"test_secret"}],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-04-28T09:22:55.224263Z"}' headers: Content-Length: - - "703" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:03 GMT + - Mon, 28 Apr 2025 09:22:55 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1475,11 +1377,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a028397b-5545-47f2-84b1-e7291016626a + - d3a3639c-d5e8-4f42-ab9f-2e2971169b75 status: 200 OK code: 200 - duration: 56.495375ms - - id: 30 + duration: 34.23575ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1494,8 +1396,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: GET response: proto: HTTP/2.0 @@ -1514,7 +1416,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:08 GMT + - Mon, 28 Apr 2025 09:23:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1524,11 +1426,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0a6ea1f-63df-4621-93ee-a8c88787286a + - d940fedc-1bde-4f3f-8678-39da14efafbb status: 404 Not Found code: 404 - duration: 24.8765ms - - id: 31 + duration: 29.702667ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1543,8 +1445,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/248f8014-2a19-4722-a7ae-d6ccc0873d5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/fc04be20-4e4e-453b-9ad3-525f34966b7c method: DELETE response: proto: HTTP/2.0 @@ -1563,7 +1465,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:45:08 GMT + - Mon, 28 Apr 2025 09:23:00 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1573,7 +1475,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce3587e5-219d-4d30-80df-f0d078d91db9 + - 9a5918a3-e9dd-4284-876f-7f84a5359e43 status: 404 Not Found code: 404 - duration: 24.422583ms + duration: 25.548417ms diff --git a/internal/services/function/testdata/function-namespace-environment-variables.cassette.yaml b/internal/services/function/testdata/function-namespace-environment-variables.cassette.yaml index 1581f4c364..12d1049bb3 100644 --- a/internal/services/function/testdata/function-namespace-environment-variables.cassette.yaml +++ b/internal/services/function/testdata/function-namespace-environment-variables.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 160 + content_length: 203 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-env-test","environment_variables":{"test":"test"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"tf-env-test","environment_variables":{"test":"test"},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[{"key":"test_secret","value":"test_secret"}],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 627 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794384Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:07.450794384Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655262Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$YRIgmAtqAHq2gkmxCQXljw$UKT6Ye9rq/aP5pzT5IH+eTnoAxo8x6mnCaYubw5ufZo","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:40.790655262Z"}' headers: Content-Length: - - "476" + - "627" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:07 GMT + - Mon, 28 Apr 2025 09:22:40 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6980ba1-8fc9-41ff-89db-49911d1edee2 + - 2fbace1b-a845-4aa0-855f-421633faaaa2 status: 200 OK code: 200 - duration: 1.008085208s + duration: 2.886259292s - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 470 + content_length: 621 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:07.450794Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$YRIgmAtqAHq2gkmxCQXljw$UKT6Ye9rq/aP5pzT5IH+eTnoAxo8x6mnCaYubw5ufZo","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:40.790655Z"}' headers: Content-Length: - - "470" + - "621" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:07 GMT + - Mon, 28 Apr 2025 09:22:40 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da370fa7-9f52-42c5-a4cb-d58d45fe64af + - 1ef4d963-4661-4cc6-831a-dcdcfb86b733 status: 200 OK code: 200 - duration: 74.946083ms + duration: 42.384833ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -125,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:09.689729Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$YRIgmAtqAHq2gkmxCQXljw$UKT6Ye9rq/aP5pzT5IH+eTnoAxo8x6mnCaYubw5ufZo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.817711Z"}' headers: Content-Length: - - "548" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:12 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3960cc2-b03e-4a64-9bd7-144c834839c3 + - 5802ac9a-4361-42dc-96bf-cfacfb7bc35b status: 200 OK code: 200 - duration: 92.27375ms + duration: 42.063791ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -174,18 +174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:09.689729Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$YRIgmAtqAHq2gkmxCQXljw$UKT6Ye9rq/aP5pzT5IH+eTnoAxo8x6mnCaYubw5ufZo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.817711Z"}' headers: Content-Length: - - "548" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:12 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b0cfa95-2a63-4c0d-bae4-0b3105163cca + - 596204e2-ffe2-4183-b6e3-e05c5326e79c status: 200 OK code: 200 - duration: 70.497125ms + duration: 40.739333ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -223,18 +223,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:09.689729Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$YRIgmAtqAHq2gkmxCQXljw$UKT6Ye9rq/aP5pzT5IH+eTnoAxo8x6mnCaYubw5ufZo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.817711Z"}' headers: Content-Length: - - "548" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:13 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2c3dfb6-154b-45b2-923e-d9ace923db0a + - 64bf449a-f097-48eb-8e54-ea1cd9b7f2a7 status: 200 OK code: 200 - duration: 130.78875ms + duration: 44.064667ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -272,18 +272,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:09.689729Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$YRIgmAtqAHq2gkmxCQXljw$UKT6Ye9rq/aP5pzT5IH+eTnoAxo8x6mnCaYubw5ufZo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.817711Z"}' headers: Content-Length: - - "548" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:13 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd6f792d-fcab-4a3d-b29d-ab85b02da1c3 + - c3091853-a6e8-41c6-8b97-54aa0823874a status: 200 OK code: 200 - duration: 73.717417ms + duration: 43.051625ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -321,18 +321,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:09.689729Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$YRIgmAtqAHq2gkmxCQXljw$UKT6Ye9rq/aP5pzT5IH+eTnoAxo8x6mnCaYubw5ufZo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.817711Z"}' headers: Content-Length: - - "548" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:14 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de086ecb-18a3-44ab-9ef7-7bfdfd6ef22a + - 2c6b719a-90cc-419d-99bc-6da97de0f9cd status: 200 OK code: 200 - duration: 74.174458ms + duration: 49.291958ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -370,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:09.689729Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$YRIgmAtqAHq2gkmxCQXljw$UKT6Ye9rq/aP5pzT5IH+eTnoAxo8x6mnCaYubw5ufZo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.817711Z"}' headers: Content-Length: - - "548" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:15 GMT + - Mon, 28 Apr 2025 09:22:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -391,29 +391,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3b4db81-6ccb-4573-992b-800d6a4ad33b + - 2b1210c5-4fc4-4b14-836b-e2ff20aa84f7 status: 200 OK code: 200 - duration: 144.703208ms + duration: 38.575209ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 75 + content_length: 119 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"environment_variables":{"foo":"bar"},"secret_environment_variables":null}' + body: '{"environment_variables":{"foo":"bar"},"secret_environment_variables":[{"key":"test_secret","value":"updated_secret"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: PATCH response: proto: HTTP/2.0 @@ -421,18 +421,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 551 + content_length: 702 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:15.610639201Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ABb+w+CD8Pme8B0qJ2bD3A$fh05pxjA/q35YWmVwzTxSqz3Jnw7BFfhEKrty5VMzbY","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:47.408367732Z"}' headers: Content-Length: - - "551" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:15 GMT + - Mon, 28 Apr 2025 09:22:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f81bfcf-29dc-4ee5-bd53-87f0a887b262 + - eed77f98-fe90-4721-afd4-44e247fc878a status: 200 OK code: 200 - duration: 213.420375ms + duration: 554.10725ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -470,18 +470,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 699 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:15.610639Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ABb+w+CD8Pme8B0qJ2bD3A$fh05pxjA/q35YWmVwzTxSqz3Jnw7BFfhEKrty5VMzbY","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:47.408368Z"}' headers: Content-Length: - - "548" + - "699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:15 GMT + - Mon, 28 Apr 2025 09:22:47 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56b8e186-c07e-4065-b64b-b1f8a2d538ac + - f70d0e64-82f9-4e1f-9139-9d8fe647cdaf status: 200 OK code: 200 - duration: 85.677667ms + duration: 37.512792ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -519,18 +519,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 697 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:15.610639Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ABb+w+CD8Pme8B0qJ2bD3A$fh05pxjA/q35YWmVwzTxSqz3Jnw7BFfhEKrty5VMzbY","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:47.805011Z"}' headers: Content-Length: - - "548" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:20 GMT + - Mon, 28 Apr 2025 09:22:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09687087-7174-4ce6-8b72-3cd8d7d8c789 + - a922e386-29cc-418e-92cb-d64a7e7f03c4 status: 200 OK code: 200 - duration: 53.643333ms + duration: 43.154125ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -568,18 +568,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 548 + content_length: 697 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:15.610639Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ABb+w+CD8Pme8B0qJ2bD3A$fh05pxjA/q35YWmVwzTxSqz3Jnw7BFfhEKrty5VMzbY","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:47.805011Z"}' headers: Content-Length: - - "548" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:25 GMT + - Mon, 28 Apr 2025 09:22:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecac7c20-356c-4c29-b4ab-2d70065ff526 + - ff7293b9-876f-4512-8b0c-d468931bbaa4 status: 200 OK code: 200 - duration: 58.483416ms + duration: 40.821083ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -617,18 +617,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 546 + content_length: 697 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:26.650446Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ABb+w+CD8Pme8B0qJ2bD3A$fh05pxjA/q35YWmVwzTxSqz3Jnw7BFfhEKrty5VMzbY","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:47.805011Z"}' headers: Content-Length: - - "546" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:31 GMT + - Mon, 28 Apr 2025 09:22:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ee1b5eb-3a09-448e-929f-00dc85f92672 + - b78fe63b-8c28-4bc4-87b0-2f9c929c8555 status: 200 OK code: 200 - duration: 60.516ms + duration: 109.537959ms - id: 13 request: proto: HTTP/1.1 @@ -657,8 +657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -666,18 +666,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 546 + content_length: 697 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:26.650446Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ABb+w+CD8Pme8B0qJ2bD3A$fh05pxjA/q35YWmVwzTxSqz3Jnw7BFfhEKrty5VMzbY","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:47.805011Z"}' headers: Content-Length: - - "546" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:31 GMT + - Mon, 28 Apr 2025 09:22:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cb90f00-7c12-4a32-b782-a116f0c0ba08 + - 5e0fdb1e-ef2b-46b9-9764-2ce1b258fe78 status: 200 OK code: 200 - duration: 164.105708ms + duration: 44.97075ms - id: 14 request: proto: HTTP/1.1 @@ -706,27 +706,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 546 + content_length: 703 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:26.650446Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ABb+w+CD8Pme8B0qJ2bD3A$fh05pxjA/q35YWmVwzTxSqz3Jnw7BFfhEKrty5VMzbY","key":"test_secret"}],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:22:53.380425502Z"}' headers: Content-Length: - - "546" + - "703" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:32 GMT + - Mon, 28 Apr 2025 09:22:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a86e9705-fe03-4df2-9074-35282c1f8087 + - 7910de3a-9b70-4190-936a-95847768096f status: 200 OK code: 200 - duration: 76.955792ms + duration: 251.885292ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -764,18 +764,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 546 + content_length: 700 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:26.650446Z"}' + body: '{"created_at":"2025-04-28T09:22:40.790655Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"e62f7ceb-0adf-46b6-b311-506202abf05c","name":"tf-env-test","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtesttldyxtc9","registry_namespace_id":"8420ad41-936d-4377-acda-bffa89309827","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$ABb+w+CD8Pme8B0qJ2bD3A$fh05pxjA/q35YWmVwzTxSqz3Jnw7BFfhEKrty5VMzbY","key":"test_secret"}],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:22:53.380426Z"}' headers: Content-Length: - - "546" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:32 GMT + - Mon, 28 Apr 2025 09:22:53 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43f707a4-7f83-45a9-b4fc-5071cf79199e + - ce549792-aff1-4756-846f-14fad5b978c2 status: 200 OK code: 200 - duration: 74.125ms + duration: 42.811375ms - id: 16 request: proto: HTTP/1.1 @@ -804,106 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 552 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:33.010991017Z"}' - headers: - Content-Length: - - "552" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:44:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3db26b2-73c7-4ac0-b06b-cf1c31a42e1c - status: 200 OK - code: 200 - duration: 206.574459ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 549 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.450794Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"0edfc4d5-97ee-482c-8fec-fa733d03227f","name":"tf-env-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfenvtestgsng51rr","registry_namespace_id":"b5771b85-f3e9-4eb1-9649-cacae3725936","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:33.010991Z"}' - headers: - Content-Length: - - "549" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:44:33 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 57731484-dbbd-4765-bf46-d954810aa590 - status: 200 OK - code: 200 - duration: 62.872791ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: GET response: proto: HTTP/2.0 @@ -922,7 +824,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:38 GMT + - Mon, 28 Apr 2025 09:22:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -932,11 +834,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07b094ad-586a-46f6-a28b-5192881d0058 + - a9e97043-48a1-4d8c-a5d6-ad4d74ce2dbe status: 404 Not Found code: 404 - duration: 24.586209ms - - id: 19 + duration: 31.475291ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -951,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0edfc4d5-97ee-482c-8fec-fa733d03227f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/e62f7ceb-0adf-46b6-b311-506202abf05c method: DELETE response: proto: HTTP/2.0 @@ -971,7 +873,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:38 GMT + - Mon, 28 Apr 2025 09:22:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -981,7 +883,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 648b2ddf-44b3-4ca4-b9df-928e30466695 + - a2136ba1-c776-46db-a77f-2ef79d53cede status: 404 Not Found code: 404 - duration: 25.571917ms + duration: 72.553583ms diff --git a/internal/services/function/testdata/function-namespace-no-name.cassette.yaml b/internal/services/function/testdata/function-namespace-no-name.cassette.yaml index 825b34b996..7b22653388 100644 --- a/internal/services/function/testdata/function-namespace-no-name.cassette.yaml +++ b/internal/services/function/testdata/function-namespace-no-name.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 156 + content_length: 166 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-func-gifted-curie","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"tf-func-ecstatic-chandrasekhar","environment_variables":{},"project_id":"6867048b-fe12-4e96-835e-41c79a39604b","secret_environment_variables":[],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 496 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166336Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:31.681166336Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584003800Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:39.584003800Z"}' headers: Content-Length: - - "472" + - "496" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:31 GMT + - Mon, 28 Apr 2025 09:22:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 127a2838-60d5-420e-a54a-8fcdac4931fa + - 0b1641f7-605e-47c7-8aaa-9c07a8036cd5 status: 200 OK code: 200 - duration: 271.611292ms + duration: 1.609896917s - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 466 + content_length: 490 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:31.681166Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584004Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-04-28T09:22:39.584004Z"}' headers: Content-Length: - - "466" + - "490" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:31 GMT + - Mon, 28 Apr 2025 09:22:39 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97bb48bc-46f4-4e67-96ee-d7afb3650f33 + - c0c115bc-d3d7-481b-bf7b-dc2fb37207b2 status: 200 OK code: 200 - duration: 71.39025ms + duration: 40.272084ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: GET response: proto: HTTP/2.0 @@ -125,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncgiftedcuriet4i4odg1","registry_namespace_id":"c5b6cbda-c29e-423b-b0c7-02faa41ad732","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:33.432895Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584004Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncecstaticchandrfauujmza","registry_namespace_id":"d0f5c7db-7ab3-475b-ada9-f0be61f99c60","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.043307Z"}' headers: Content-Length: - - "552" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:36 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 174ebbf1-ff1b-4d1c-ae14-bfd03a2f8feb + - 550070b4-f98a-4813-9908-7f9852772f56 status: 200 OK code: 200 - duration: 62.891541ms + duration: 41.477125ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: GET response: proto: HTTP/2.0 @@ -174,18 +174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncgiftedcuriet4i4odg1","registry_namespace_id":"c5b6cbda-c29e-423b-b0c7-02faa41ad732","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:33.432895Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584004Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncecstaticchandrfauujmza","registry_namespace_id":"d0f5c7db-7ab3-475b-ada9-f0be61f99c60","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.043307Z"}' headers: Content-Length: - - "552" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:36 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5634d8fa-42e5-4fc4-9a25-eb6b18007ed3 + - 10386eb8-bf1b-4f12-9677-afe78f7810ef status: 200 OK code: 200 - duration: 60.572292ms + duration: 41.562542ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: GET response: proto: HTTP/2.0 @@ -223,18 +223,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncgiftedcuriet4i4odg1","registry_namespace_id":"c5b6cbda-c29e-423b-b0c7-02faa41ad732","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:33.432895Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584004Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncecstaticchandrfauujmza","registry_namespace_id":"d0f5c7db-7ab3-475b-ada9-f0be61f99c60","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.043307Z"}' headers: Content-Length: - - "552" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:37 GMT + - Mon, 28 Apr 2025 09:22:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89c2d0a2-32cd-4971-b379-d5d5e065c9dd + - 9e23e672-2f91-4d26-a9df-226ea5c466cd status: 200 OK code: 200 - duration: 65.942709ms + duration: 89.818375ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: GET response: proto: HTTP/2.0 @@ -272,18 +272,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncgiftedcuriet4i4odg1","registry_namespace_id":"c5b6cbda-c29e-423b-b0c7-02faa41ad732","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:33.432895Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584004Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncecstaticchandrfauujmza","registry_namespace_id":"d0f5c7db-7ab3-475b-ada9-f0be61f99c60","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.043307Z"}' headers: Content-Length: - - "552" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:37 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f9d3390-13d5-430a-b1e3-1eb0c1d9f655 + - 0ad927e5-ef78-4364-8a07-e55f3ff6e685 status: 200 OK code: 200 - duration: 65.863667ms + duration: 36.166417ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: GET response: proto: HTTP/2.0 @@ -321,18 +321,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncgiftedcuriet4i4odg1","registry_namespace_id":"c5b6cbda-c29e-423b-b0c7-02faa41ad732","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:33.432895Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584004Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncecstaticchandrfauujmza","registry_namespace_id":"d0f5c7db-7ab3-475b-ada9-f0be61f99c60","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-04-28T09:22:43.043307Z"}' headers: Content-Length: - - "552" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:38 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1af2db2-966e-4bcc-950b-bfa73d511615 + - 5464e0f6-642b-4067-af42-c74bec1fec45 status: 200 OK code: 200 - duration: 55.300333ms + duration: 44.402292ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: DELETE response: proto: HTTP/2.0 @@ -370,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 585 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncgiftedcuriet4i4odg1","registry_namespace_id":"c5b6cbda-c29e-423b-b0c7-02faa41ad732","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:38.705251866Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584004Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncecstaticchandrfauujmza","registry_namespace_id":"d0f5c7db-7ab3-475b-ada9-f0be61f99c60","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:22:45.303450246Z"}' headers: Content-Length: - - "558" + - "585" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:38 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 522d859a-d03d-4405-870c-97be57083d33 + - 888e33ae-2bab-40a3-b95a-ac163205c67a status: 200 OK code: 200 - duration: 194.710458ms + duration: 189.039083ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: GET response: proto: HTTP/2.0 @@ -419,18 +419,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 555 + content_length: 582 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:31.681166Z","description":"","environment_variables":{},"error_message":null,"id":"df9c7eb1-8d9a-4327-b694-3819b00fbcfb","name":"tf-func-gifted-curie","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncgiftedcuriet4i4odg1","registry_namespace_id":"c5b6cbda-c29e-423b-b0c7-02faa41ad732","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:38.705252Z"}' + body: '{"created_at":"2025-04-28T09:22:39.584004Z","description":"","environment_variables":{},"error_message":null,"id":"c2d67483-b8ac-4638-9aed-7b40d8e757ab","name":"tf-func-ecstatic-chandrasekhar","organization_id":"6867048b-fe12-4e96-835e-41c79a39604b","project_id":"6867048b-fe12-4e96-835e-41c79a39604b","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncecstaticchandrfauujmza","registry_namespace_id":"d0f5c7db-7ab3-475b-ada9-f0be61f99c60","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-04-28T09:22:45.303450Z"}' headers: Content-Length: - - "555" + - "582" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:38 GMT + - Mon, 28 Apr 2025 09:22:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6678ae59-a77c-46c7-abf6-fce99041a1a5 + - d025061f-60f8-414b-80ef-9c81d723a005 status: 200 OK code: 200 - duration: 71.842667ms + duration: 88.775666ms - id: 9 request: proto: HTTP/1.1 @@ -459,8 +459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: GET response: proto: HTTP/2.0 @@ -479,7 +479,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:43 GMT + - Mon, 28 Apr 2025 09:22:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98d1f373-82a5-47cc-b3f0-1423ec6c3cac + - d6680139-1c9f-4e4f-baf0-4fc1062c0596 status: 404 Not Found code: 404 - duration: 25.160667ms + duration: 26.924334ms - id: 10 request: proto: HTTP/1.1 @@ -508,8 +508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/df9c7eb1-8d9a-4327-b694-3819b00fbcfb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/c2d67483-b8ac-4638-9aed-7b40d8e757ab method: DELETE response: proto: HTTP/2.0 @@ -528,7 +528,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:43 GMT + - Mon, 28 Apr 2025 09:22:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -538,7 +538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81b93758-613d-4dd1-afc3-788f3926f461 + - a02caeaf-e932-4dd7-a5ff-eb36a2c09d94 status: 404 Not Found code: 404 - duration: 20.439209ms + duration: 27.039666ms