From ca18c97e48224195b6eb1e9b53d0e43223e7ca99 Mon Sep 17 00:00:00 2001 From: devtools-ci-cd Date: Thu, 20 Mar 2025 16:01:14 +0100 Subject: [PATCH 1/2] fix(container): fix secret management container --- .../services/container/helpers_container.go | 25 + internal/services/container/namespace.go | 25 +- internal/services/container/namespace_test.go | 85 + .../namespace-secret-management.cassette.yaml | 1875 +++++++++++++++++ 4 files changed, 2008 insertions(+), 2 deletions(-) create mode 100644 internal/services/container/testdata/namespace-secret-management.cassette.yaml diff --git a/internal/services/container/helpers_container.go b/internal/services/container/helpers_container.go index cf78fe70b1..33fd3a1559 100644 --- a/internal/services/container/helpers_container.go +++ b/internal/services/container/helpers_container.go @@ -3,6 +3,7 @@ package container import ( "context" "errors" + "fmt" "strings" "time" @@ -302,6 +303,30 @@ 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{} diff --git a/internal/services/container/namespace.go b/internal/services/container/namespace.go index 8e9633f13a..680890c755 100644 --- a/internal/services/container/namespace.go +++ b/internal/services/container/namespace.go @@ -188,8 +188,29 @@ func ResourceContainerNamespaceUpdate(ctx context.Context, d *schema.ResourceDat req.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) } - if d.HasChanges("environment_variables") { - 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.HasChange("secret_environment_variables") { diff --git a/internal/services/container/namespace_test.go b/internal/services/container/namespace_test.go index 75ec95a497..f9d052ac9f 100644 --- a/internal/services/container/namespace_test.go +++ b/internal/services/container/namespace_test.go @@ -172,6 +172,91 @@ func TestAccNamespace_Basic(t *testing.T) { }) } +func TestAccNamespace_SecretManagement(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: isNamespaceDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource scaleway_container_namespace main { + name = "test-secret-ns" + secret_environment_variables = { + "SECRET_1" = "value1" + } + } + `, + 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"), + ), + }, + { + Config: ` + resource scaleway_container_namespace main { + 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"), + 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_2" = "value2" + } + } + `, + Check: resource.ComposeTestCheckFunc( + isNamespacePresent(tt, "scaleway_container_namespace.main"), + 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"), + ), + }, + }, + }) +} + func TestAccNamespace_DestroyRegistry(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() diff --git a/internal/services/container/testdata/namespace-secret-management.cassette.yaml b/internal/services/container/testdata/namespace-secret-management.cassette.yaml new file mode 100644 index 0000000000..d9e9245fa5 --- /dev/null +++ b/internal/services/container/testdata/namespace-secret-management.cassette.yaml @@ -0,0 +1,1875 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 185 + 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}' + 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 + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 599 + 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"}' + headers: + Content-Length: + - "599" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:43 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: + - 7b59b7f8-e591-4756-95b7-1297f98dd71b + status: 200 OK + code: 200 + duration: 513.715959ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 593 + 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"}' + headers: + Content-Length: + - "593" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:43 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: + - df06c3d0-59a9-462a-a866-63043d88c092 + status: 200 OK + code: 200 + duration: 193.886042ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:48 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: + - a2aab171-6b0e-43f4-985b-10b1114a40ba + status: 200 OK + code: 200 + duration: 93.599291ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:48 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: + - 1bd60073-c148-4175-8249-58d6e0109e72 + status: 200 OK + code: 200 + duration: 68.97575ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55: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: + - 6045f2ca-626f-4b56-965c-e59ccff6e6f9 + status: 200 OK + code: 200 + duration: 83.317958ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55: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: + - 124bf5cf-a18b-4935-ac1c-c8c7674b12a4 + status: 200 OK + code: 200 + duration: 87.964709ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:50 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: + - 8893c921-09e3-4212-8469-f8026d05a50c + status: 200 OK + code: 200 + duration: 73.397084ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:51 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: + - 948293c2-5831-4839-9af4-4f7ffe4df7b0 + status: 200 OK + code: 200 + duration: 100.508041ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 35 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"secret_environment_variables":[]}' + 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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:51 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: + - 181282bb-3df9-438c-acf3-4e374c29dc3a + status: 200 OK + code: 200 + duration: 85.673083ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:51 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: + - 3e7671be-1e33-4a5a-9a42-f53d55ca558a + status: 200 OK + code: 200 + duration: 142.227625ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0755306a-a120-42b4-9089-347abfb24ab7 + status: 200 OK + code: 200 + duration: 74.438042ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:53 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: + - 3099c9ab-44b1-47b8-9a17-360c10697d07 + status: 200 OK + code: 200 + duration: 82.858292ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:53 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: + - 565d404a-1d60-4ea3-b821-6f7cd3563d3d + status: 200 OK + code: 200 + duration: 106.427916ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 674 + 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"}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:55:54 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: + - 798ed59e-6a45-41b2-bd31-1e1071875760 + status: 200 OK + code: 200 + duration: 76.580667ms + - 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 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + 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: + - 2cd93940-3a9f-422a-a941-87780e21a594 + 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 + 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_3","value":"value3"}]}' + 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: 947 + 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"}' + headers: + Content-Length: + - "947" + 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: + - f94b939e-6ce2-400c-81e5-52d8ed3de138 + status: 200 OK + code: 200 + duration: 240.547041ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 944 + 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"}' + headers: + Content-Length: + - "944" + 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: + - 348433c8-1baa-43be-8cf2-8f8d4cfe643a + status: 200 OK + code: 200 + duration: 70.383167ms + - 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.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: 942 + 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"}' + headers: + Content-Length: + - "942" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:56:17 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: + - 6b5ab45b-8c93-4df5-872b-6303c5fd49ee + status: 200 OK + code: 200 + duration: 92.420334ms + - 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.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: 942 + 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"}' + headers: + Content-Length: + - "942" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:56:17 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: + - e9193f87-afe6-4833-b90a-33a89919b46a + status: 200 OK + code: 200 + duration: 81.921334ms + - 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.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: 942 + 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"}' + headers: + Content-Length: + - "942" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:56:18 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: + - 2d1f0d53-82c8-474c-98dc-2df9ed3ed033 + status: 200 OK + code: 200 + duration: 82.890625ms + - 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.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: 942 + 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"}' + headers: + Content-Length: + - "942" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:56:19 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: + - 36e462e2-4c1f-4e3c-b8c6-1e3f222c7205 + status: 200 OK + code: 200 + duration: 76.22925ms + - 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.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: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 948 + 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"}' + headers: + Content-Length: + - "948" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:56:19 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: + - 092f6a32-33c8-4757-b15f-6d843759148f + status: 200 OK + code: 200 + duration: 200.330208ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 945 + 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"}' + headers: + Content-Length: + - "945" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 14:56:19 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: + - 85ad34c6-d33c-4ed3-8cba-23828c4f086a + status: 200 OK + code: 200 + duration: 74.686667ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: 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 14:56:24 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: + - 40540a23-df77-4051-9fed-9385f18afc38 + status: 404 Not Found + code: 404 + duration: 31.168292ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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: DELETE + 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 14:56:25 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: + - 8f6f4b34-7e2c-4d1e-8277-c2ca2c7f8ccf + status: 404 Not Found + code: 404 + duration: 31.753541ms From 02cc7682a7d94ff41284b0e9ffc9e0c5fa9d51b4 Mon Sep 17 00:00:00 2001 From: devtools-ci-cd Date: Thu, 20 Mar 2025 16:40:31 +0100 Subject: [PATCH 2/2] fix test basic --- internal/services/container/namespace.go | 8 +- .../testdata/namespace-basic.cassette.yaml | 1793 +++++++++++------ 2 files changed, 1170 insertions(+), 631 deletions(-) diff --git a/internal/services/container/namespace.go b/internal/services/container/namespace.go index 680890c755..ecd14da2d8 100644 --- a/internal/services/container/namespace.go +++ b/internal/services/container/namespace.go @@ -188,6 +188,10 @@ func ResourceContainerNamespaceUpdate(ctx context.Context, d *schema.ResourceDat req.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) } + if d.HasChanges("environment_variables") { + req.EnvironmentVariables = types.ExpandMapPtrStringString(d.Get("environment_variables")) + } + if d.HasChange("secret_environment_variables") { oldSecretsRaw, newSecretsRaw := d.GetChange("secret_environment_variables") @@ -213,10 +217,6 @@ func ResourceContainerNamespaceUpdate(ctx context.Context, d *schema.ResourceDat req.SecretEnvironmentVariables = deletedSecrets } - if d.HasChange("secret_environment_variables") { - req.SecretEnvironmentVariables = expandContainerSecrets(d.Get("secret_environment_variables")) - } - if _, err := api.UpdateNamespace(req, scw.WithContext(ctx)); err != nil { return diag.FromErr(err) } diff --git a/internal/services/container/testdata/namespace-basic.cassette.yaml b/internal/services/container/testdata/namespace-basic.cassette.yaml index db9cc23abe..d09c68fcf9 100644 --- a/internal/services/container/testdata/namespace-basic.cassette.yaml +++ b/internal/services/container/testdata/namespace-basic.cassette.yaml @@ -18,7 +18,7 @@ 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 + - 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 response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 465 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801111848Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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-01-24T15:38:35.801111848Z"}' + 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"}' headers: Content-Length: - "465" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:35 GMT + - Thu, 20 Mar 2025 15:37:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98ed4621-26dc-4da4-8706-38e93fab3334 + - 5b57dfde-e5e5-40eb-afd8-15462524d1f9 status: 200 OK code: 200 - duration: 299.080042ms + duration: 1.12923575s - 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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 459 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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-01-24T15:38:35.801112Z"}' + 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"}' headers: Content-Length: - "459" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:35 GMT + - Thu, 20 Mar 2025 15:37:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07a0ad64-4e99-4ba3-9460-c1e4be413e11 + - 530dcbe0-691b-4da5-b3fc-067f864be5b1 status: 200 OK code: 200 - duration: 71.6785ms + duration: 83.9015ms - 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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 459 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.839594Z"}' + 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"}' headers: Content-Length: - - "538" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:40 GMT + - Thu, 20 Mar 2025 15:37:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b049007-ac2c-450d-b94d-3f413cff9bb8 + - c36b501d-2d13-45ac-a4b8-b15aead51512 status: 200 OK code: 200 - duration: 64.904667ms + duration: 88.496584ms - 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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 459 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.839594Z"}' + 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"}' headers: Content-Length: - - "538" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:41 GMT + - Thu, 20 Mar 2025 15:38:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 651bfdcd-77a1-49c1-80fa-16fc70131840 + - c61fecb1-2340-45a1-92c5-1971f586dc1a status: 200 OK code: 200 - duration: 59.891084ms + duration: 71.780917ms - 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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 459 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.839594Z"}' + 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"}' headers: Content-Length: - - "538" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:41 GMT + - Thu, 20 Mar 2025 15:38:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a643d29-a0dd-4765-8ee2-d1b55a587bd4 + - 11347f28-bde5-49fa-ac23-f4ddef134b40 status: 200 OK code: 200 - duration: 68.15375ms + duration: 79.951333ms - 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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 540 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.839594Z"}' + 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"}' headers: Content-Length: - - "538" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:41 GMT + - Thu, 20 Mar 2025 15:38:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05a04505-3bad-4e03-84cc-8fb3117cb0a1 + - d5608c31-b33e-4d78-9125-b0d66f18f209 status: 200 OK code: 200 - duration: 89.8775ms + duration: 96.842166ms - 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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 538 + content_length: 540 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.839594Z"}' + 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"}' headers: Content-Length: - - "538" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Thu, 20 Mar 2025 15:38:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45269fde-fcd8-4e86-bf37-78178eb9fdd9 + - 7c7ca010-7c1c-4e84-a1f2-c1657f86d62a status: 200 OK code: 200 - duration: 63.980208ms + duration: 79.175208ms - 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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:38.839594Z"}' + 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"}' headers: Content-Length: - "538" @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:43 GMT + - Thu, 20 Mar 2025 15:38:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,50 +391,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb31beee-0386-49e6-baac-ac79f54e42f8 + - 908a4af8-f307-4d9d-80d5-358ebea7cba8 status: 200 OK code: 200 - duration: 67.789041ms + duration: 83.393458ms - id: 8 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: PATCH + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 568 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:43.511825454Z"}' + 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"}' headers: Content-Length: - - "568" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:43 GMT + - Thu, 20 Mar 2025 15:38:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1b6037-645f-40c2-85c8-5a1e9c12fe8f + - 4d8c6239-a3d6-4f60-878f-f94f0abfd4f5 status: 200 OK code: 200 - duration: 109.489834ms + duration: 87.416ms - id: 9 request: proto: HTTP/1.1 @@ -461,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -470,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:43.511825Z"}' + 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"}' headers: Content-Length: - - "565" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:43 GMT + - Thu, 20 Mar 2025 15:38:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6293a1d-015a-45cb-87b0-81d6c1bb09b7 + - f48f001e-437d-440e-9ade-8ee6a105974a status: 200 OK code: 200 - duration: 74.625958ms + duration: 89.479958ms - id: 10 request: proto: HTTP/1.1 @@ -510,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -519,20 +517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:43.511825Z"}' + 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"}' headers: Content-Length: - - "565" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:43 GMT + - Thu, 20 Mar 2025 15:38:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15ba38f7-1509-4698-b3ae-398803c98d6f + - ead47e4e-d821-4fa7-9112-2bf82936ed96 status: 200 OK code: 200 - duration: 73.447083ms + duration: 104.902959ms - id: 11 request: proto: HTTP/1.1 @@ -559,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -568,20 +566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:43.511825Z"}' + 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"}' headers: Content-Length: - - "565" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:44 GMT + - Thu, 20 Mar 2025 15:38:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75171e32-7055-4319-a936-bf5a916584e8 + - ba26ca22-867a-47fe-b54d-d4e57c38b6d1 status: 200 OK code: 200 - duration: 67.314583ms + duration: 81.372833ms - id: 12 request: proto: HTTP/1.1 @@ -608,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -617,20 +615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:43.511825Z"}' + 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"}' headers: Content-Length: - - "565" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:45 GMT + - Thu, 20 Mar 2025 15:38:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,48 +636,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 778c137c-39c9-41c7-b8bb-21f2a5cfe99c + - a32e1621-a1e4-42aa-a589-a576966c58b5 status: 200 OK code: 200 - duration: 69.56825ms + duration: 117.54475ms - id: 13 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: GET + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 568 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"test container namespace 01","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:43.511825Z"}' + 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"}' headers: Content-Length: - - "565" + - "568" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:45 GMT + - Thu, 20 Mar 2025 15:38:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,50 +687,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11cf9a6a-faf3-4e3e-8740-a5b25fa065d2 + - 0e6418f3-c94c-46d0-8bf2-0461bcdb7378 status: 200 OK code: 200 - duration: 68.74ms + duration: 201.03325ms - id: 14 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: PATCH + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:38:46.253975337Z"}' + 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"}' headers: Content-Length: - - "692" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:46 GMT + - Thu, 20 Mar 2025 15:38:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0599298-dd4f-4a6b-8ac9-86939ffae842 + - 8bff62a5-2515-442a-85ee-14eefe47f789 status: 200 OK code: 200 - duration: 303.487ms + duration: 84.734792ms - id: 15 request: proto: HTTP/1.1 @@ -757,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/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -766,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 689 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:38:46.253975Z"}' + 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"}' headers: Content-Length: - - "689" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:46 GMT + - Thu, 20 Mar 2025 15:38:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad20bddf-55b2-4c2e-b38b-1c38c6fccc71 + - 7b982c2e-f6fb-42c7-bcec-23367d637dfc status: 200 OK code: 200 - duration: 67.434333ms + duration: 87.522083ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +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/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -815,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:50.835986Z"}' + 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"}' headers: Content-Length: - - "687" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:51 GMT + - Thu, 20 Mar 2025 15:38:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3ae4f65-8d80-42bc-bf8b-51d4f96fbf3c + - 372a6de0-3fe4-4ade-8c07-4bd7eb1fe7a8 status: 200 OK code: 200 - duration: 67.978125ms + duration: 69.024041ms - id: 17 request: proto: HTTP/1.1 @@ -855,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/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -864,20 +862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:50.835986Z"}' + 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"}' headers: Content-Length: - - "687" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:51 GMT + - Thu, 20 Mar 2025 15:38:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4832f6f2-0ad3-4ff2-b040-7d223a6f73e3 + - 366b1f77-b9fd-431f-b84f-a8f1639f2b00 status: 200 OK code: 200 - duration: 68.867166ms + duration: 105.39025ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +902,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -913,20 +911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 565 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:50.835986Z"}' + 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"}' headers: Content-Length: - - "687" + - "565" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:52 GMT + - Thu, 20 Mar 2025 15:38:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,48 +932,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68127be4-2cb7-4bd9-87a9-899d7dd36d8e + - 3f51208b-80b1-4f2b-b2d7-14f2bf8ea739 status: 200 OK code: 200 - duration: 60.443416ms + duration: 202.082541ms - id: 19 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: GET + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 692 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:50.835986Z"}' + 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"}' headers: Content-Length: - - "687" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:53 GMT + - Thu, 20 Mar 2025 15:38:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67374e54-5155-4e52-9b6b-cbdf32025c53 + - a953e22c-8f12-4fb7-a1cd-d74d08a2e71d status: 200 OK code: 200 - duration: 68.21425ms + duration: 619.82925ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1011,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 687 + content_length: 689 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:50.835986Z"}' + 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"}' headers: Content-Length: - - "687" + - "689" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:54 GMT + - Thu, 20 Mar 2025 15:38:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,50 +1032,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65e85aac-2d6b-4d77-9b56-ec6cb20d2206 + - 379b8a7d-a971-4026-83b6-935ef0e9c454 status: 200 OK code: 200 - duration: 62.150917ms + duration: 137.57225ms - id: 21 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: PATCH + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 687 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:38:54.087531321Z"}' + 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"}' headers: Content-Length: - - "703" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:54 GMT + - Thu, 20 Mar 2025 15:38:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8649a68-180c-406a-ba3d-dc57f4ade472 + - 839bad18-cb8f-4e1f-bfe3-7838d49bef13 status: 200 OK code: 200 - duration: 100.271292ms + duration: 72.597458ms - id: 22 request: proto: HTTP/1.1 @@ -1102,8 +1100,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1111,20 +1109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 687 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:38:54.087531Z"}' + 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"}' headers: Content-Length: - - "700" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:54 GMT + - Thu, 20 Mar 2025 15:38:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55bc2ed6-b6ec-4e03-a662-8688228ee74d + - c98e0b43-39f4-4d74-9e1a-1ac3caf2183d status: 200 OK code: 200 - duration: 64.458417ms + duration: 97.316333ms - id: 23 request: proto: HTTP/1.1 @@ -1151,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/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1160,20 +1158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 687 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:38:54.087531Z"}' + 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"}' headers: Content-Length: - - "700" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:54 GMT + - Thu, 20 Mar 2025 15:38:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6bada25-5ea6-4d3e-afa5-c6a3f008f015 + - 32a91382-5f73-421d-9862-7696a13179b7 status: 200 OK code: 200 - duration: 75.6235ms + duration: 81.81625ms - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1198,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1209,20 +1207,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 687 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:38:54.087531Z"}' + 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"}' headers: Content-Length: - - "700" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:55 GMT + - Thu, 20 Mar 2025 15:38:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44aa81c2-f5f7-48a6-bc2e-bf41123c399f + - ab52896e-6ba6-4e7f-b40b-71cfcce7246e status: 200 OK code: 200 - duration: 61.287458ms + duration: 91.596375ms - id: 25 request: proto: HTTP/1.1 @@ -1249,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/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1258,20 +1256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 687 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:38:54.087531Z"}' + 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"}' headers: Content-Length: - - "700" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:55 GMT + - Thu, 20 Mar 2025 15:38:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,48 +1277,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fdfcdfa-e857-4949-8c69-15a65a3575c2 + - 28d98270-bf55-42ec-99f7-19db28950ace status: 200 OK code: 200 - duration: 120.240459ms + duration: 78.730708ms - id: 26 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: GET + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 703 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:38:54.087531Z"}' + 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"}' headers: Content-Length: - - "700" + - "703" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:56 GMT + - Thu, 20 Mar 2025 15:38:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,50 +1328,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fc4e706-7059-4611-b90e-9a85a581e938 + - 68099c67-60be-4224-8625-fc856a844601 status: 200 OK code: 200 - duration: 72.575541ms + duration: 124.781625ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 72 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"environment_variables":{},"secret_environment_variables":[],"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: PATCH + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 679 + content_length: 700 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:38:56.775694737Z"}' + 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"}' headers: Content-Length: - - "679" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:56 GMT + - Thu, 20 Mar 2025 15:38:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 828ff250-7034-43b4-813b-2d484209cbb7 + - c0db5c8c-2161-4cfb-a197-d83886ca1371 status: 200 OK code: 200 - duration: 149.362083ms + duration: 73.176209ms - id: 28 request: proto: HTTP/1.1 @@ -1398,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/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1407,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 676 + content_length: 700 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:38:56.775695Z"}' + 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"}' headers: Content-Length: - - "676" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:56 GMT + - Thu, 20 Mar 2025 15:38:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 927fe989-a35f-40ef-ada0-4e671a093fca + - 9a08852e-729c-4652-b1a7-9f9a94d59496 status: 200 OK code: 200 - duration: 79.327834ms + duration: 77.83975ms - id: 29 request: proto: HTTP/1.1 @@ -1447,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/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1456,20 +1454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 700 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:57.078965Z"}' + 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"}' headers: Content-Length: - - "674" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:01 GMT + - Thu, 20 Mar 2025 15:38:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd2c305f-6a9c-473a-8edd-429f379f5d9c + - c67c052c-044a-482d-a840-16d3a2f922ff status: 200 OK code: 200 - duration: 65.700042ms + duration: 84.865042ms - id: 30 request: proto: HTTP/1.1 @@ -1496,8 +1494,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1505,20 +1503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 700 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:57.078965Z"}' + 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"}' headers: Content-Length: - - "674" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:02 GMT + - Thu, 20 Mar 2025 15:38:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5eb616c-70cb-4605-8276-7814e3b39257 + - bd8f3ec9-2026-42da-9d57-90dbf702bf03 status: 200 OK code: 200 - duration: 64.254167ms + duration: 79.796584ms - id: 31 request: proto: HTTP/1.1 @@ -1545,8 +1543,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/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1554,20 +1552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 700 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:57.078965Z"}' + 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"}' headers: Content-Length: - - "674" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:02 GMT + - Thu, 20 Mar 2025 15:38:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,48 +1573,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37e1a29d-0474-48d9-ac97-9991705dba19 + - cbfc3a08-6462-4856-84f3-50ca1611be43 status: 200 OK code: 200 - duration: 67.087875ms + duration: 78.752166ms - id: 32 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: GET + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 543 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:57.078965Z"}' + 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"}' headers: Content-Length: - - "674" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:03 GMT + - Thu, 20 Mar 2025 15:38:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 510d3fdc-54e5-43f3-8b54-4794ecde1ce8 + - f3d0569b-407d-44e0-b5a4-9e829773411f status: 200 OK code: 200 - duration: 63.670959ms + duration: 87.211292ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1652,20 +1652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 674 + content_length: 540 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:57.078965Z"}' + 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"}' headers: Content-Length: - - "674" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:04 GMT + - Thu, 20 Mar 2025 15:38:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffd12728-af3f-4b25-bdd7-711d3b243a0a + - 18341178-30cf-47f4-8357-7584858ebfe3 status: 200 OK code: 200 - duration: 74.774417ms + duration: 114.187125ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 - method: DELETE + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 680 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:39:04.401544514Z"}' + 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"}' headers: Content-Length: - - "680" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:04 GMT + - Thu, 20 Mar 2025 15:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1722,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c7b3bbc-ddfb-4905-8f84-817d799e9be5 + - adf728ae-c517-492d-8787-134f2b7bb734 status: 200 OK code: 200 - duration: 184.183333ms + duration: 79.861041ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1750,20 +1750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:38:35.801112Z","description":"","environment_variables":{},"error_message":null,"id":"a6a8eb51-b32a-4b10-bca9-3beb7a52dd33","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/funcscwtestcrns01dehesq1t","registry_namespace_id":"4734cf16-08ca-4eac-8709-c9a30cf2894b","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$6tLW/5Pn9KWiTaIrVs0Q+g$+5KA8neLdNnzqXzovFAcKymXikKQPcbyGYgT1Y45sHA","key":"test_secret"}],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:39:04.401545Z"}' + 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"}' headers: Content-Length: - - "677" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:04 GMT + - Thu, 20 Mar 2025 15:38:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,10 +1771,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1bf8151-1356-4519-bcf6-9f52b8081367 + - 7eec7942-af3e-4800-b1d0-55a822b67f56 status: 200 OK code: 200 - duration: 73.189625ms + duration: 86.499792ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/a6a8eb51-b32a-4b10-bca9-3beb7a52dd33 + - 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 response: proto: HTTP/2.0 @@ -1799,20 +1799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 37 + content_length: 538 uncompressed: false - body: '{"message":"Namespace was not found"}' + 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"}' headers: Content-Length: - - "37" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:09 GMT + - Thu, 20 Mar 2025 15:38:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,50 +1820,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b57b8e7a-f9ab-4ef9-8cd4-960f0f94056c - status: 404 Not Found - code: 404 - duration: 31.2585ms + - 468f4ba9-c75b-4aec-ad17-5e971378afc7 + status: 200 OK + code: 200 + duration: 109.841125ms - id: 37 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.23.3; 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.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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 612 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160963925Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:39:10.160963925Z"}' + 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"}' headers: Content-Length: - - "612" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:10 GMT + - Thu, 20 Mar 2025 15:38:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,10 +1869,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3794c48d-35c0-45e9-ab25-2ffc00d589af + - 6332e92f-f3e8-4227-b889-7cbb7d568f7c status: 200 OK code: 200 - duration: 526.497041ms + duration: 78.783375ms - id: 38 request: proto: HTTP/1.1 @@ -1890,8 +1888,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/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -1899,20 +1897,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 606 + content_length: 538 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:39:10.160964Z"}' + 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"}' headers: Content-Length: - - "606" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:10 GMT + - Thu, 20 Mar 2025 15:38:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1920,10 +1918,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ccc1faa-a9ce-4f08-aed7-cd28b9d8493a + - 1c8fa22c-040a-4068-827d-41f9adbb3154 status: 200 OK code: 200 - duration: 117.877ms + duration: 81.497291ms - id: 39 request: proto: HTTP/1.1 @@ -1939,29 +1937,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/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 - method: GET + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 544 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:11.386007Z"}' + 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"}' headers: Content-Length: - - "684" + - "544" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:15 GMT + - Thu, 20 Mar 2025 15:38:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1969,10 +1967,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec527f14-5986-4b6d-bb5f-c3165603b8c0 + - b6764d2f-7f37-455d-a0c6-bea4327c039b status: 200 OK code: 200 - duration: 79.233375ms + duration: 200.120625ms - id: 40 request: proto: HTTP/1.1 @@ -1988,8 +1986,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/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -1997,20 +1995,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 541 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:11.386007Z"}' + 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"}' headers: Content-Length: - - "684" + - "541" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:15 GMT + - Thu, 20 Mar 2025 15:38:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2018,10 +2016,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86e8b5ae-6a97-45b4-89ca-0efd90952573 + - 78f7d966-dabb-49ee-99a6-1e2ca5393411 status: 200 OK code: 200 - duration: 73.397958ms + duration: 92.203125ms - id: 41 request: proto: HTTP/1.1 @@ -2037,8 +2035,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/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2046,20 +2044,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 37 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:11.386007Z"}' + body: '{"message":"Namespace was not found"}' headers: Content-Length: - - "684" + - "37" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:15 GMT + - Thu, 20 Mar 2025 15:38:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2067,48 +2065,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 528d55b3-d082-4b7f-9d91-dd8cb0e870ac - status: 200 OK - code: 200 - duration: 63.467959ms + - f8d7a380-6290-4208-a973-08fbca6c5d4e + status: 404 Not Found + code: 404 + duration: 3.070887458s - id: 42 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":"105bdce1-64c0-48ab-899d-868455867ecf","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 - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 - method: GET + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 612 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:11.386007Z"}' + 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"}' headers: Content-Length: - - "684" + - "612" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:16 GMT + - Thu, 20 Mar 2025 15:38:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2116,10 +2116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53bc5d46-efdd-4fcd-9621-258ce93ea7ef + - 24a26cd8-d6c6-4c80-ac8b-c2d9ceec6046 status: 200 OK code: 200 - duration: 82.12675ms + duration: 754.89ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2144,20 +2144,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 606 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:11.386007Z"}' + 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"}' headers: Content-Length: - - "684" + - "606" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:17 GMT + - Thu, 20 Mar 2025 15:38:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2165,10 +2165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 290c9137-55b8-46ac-ac57-516e80d72646 + - 040bef7c-359b-4636-9a5b-d9bc7a315ab6 status: 200 OK code: 200 - duration: 68.09275ms + duration: 95.644041ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2195,7 +2195,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"test":"test"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:11.386007Z"}' + 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"}' headers: Content-Length: - "684" @@ -2204,9 +2204,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:17 GMT + - Thu, 20 Mar 2025 15:39:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2214,50 +2214,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25ccbedd-d1d8-43a4-b1b9-0c822bb6d29e + - 7fe31c4d-c79c-4ee3-84c1-6f99d43113d3 status: 200 OK code: 200 - duration: 75.497125ms + duration: 103.043958ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 114 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"environment_variables":{"foo":"bar"},"secret_environment_variables":[{"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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 - method: PATCH + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 823 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:39:18.096340281Z"}' + 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"}' headers: Content-Length: - - "823" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:18 GMT + - Thu, 20 Mar 2025 15:39:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2265,10 +2263,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5901ec48-8ad2-4623-8f20-c7339c3c14a3 + - 64aa562d-d218-4a82-8dd9-988f0dba393f status: 200 OK code: 200 - duration: 158.426542ms + duration: 156.738166ms - id: 46 request: proto: HTTP/1.1 @@ -2284,8 +2282,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/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2293,20 +2291,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 820 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"pending","tags":[],"updated_at":"2025-01-24T15:39:18.096340Z"}' + 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"}' headers: Content-Length: - - "820" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:18 GMT + - Thu, 20 Mar 2025 15:39:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2314,10 +2312,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dad86bc0-f913-4b36-bb5c-3cd911875065 + - 22e8f116-b565-4351-b94a-26a5f179bd3c status: 200 OK code: 200 - duration: 82.934ms + duration: 73.126709ms - id: 47 request: proto: HTTP/1.1 @@ -2333,8 +2331,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/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2342,20 +2340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 818 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:18.457715Z"}' + 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"}' headers: Content-Length: - - "818" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:23 GMT + - Thu, 20 Mar 2025 15:39:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2363,10 +2361,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c6cbe0a-01a3-4317-b244-d7ac5e9d65a1 + - 86bab1a5-ac09-43cd-89e4-7113a9f35c70 status: 200 OK code: 200 - duration: 96.465333ms + duration: 77.883708ms - id: 48 request: proto: HTTP/1.1 @@ -2382,8 +2380,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/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2391,20 +2389,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 818 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:18.457715Z"}' + 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"}' headers: Content-Length: - - "818" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:23 GMT + - Thu, 20 Mar 2025 15:39:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2412,10 +2410,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46ed1231-745d-4a3b-8a7b-3a407915cfba + - dbcba470-ac4f-4ce3-ad2f-79ad06df4bff status: 200 OK code: 200 - duration: 80.420625ms + duration: 71.753167ms - id: 49 request: proto: HTTP/1.1 @@ -2431,8 +2429,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/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2440,20 +2438,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 818 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:18.457715Z"}' + 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"}' headers: Content-Length: - - "818" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:24 GMT + - Thu, 20 Mar 2025 15:39:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2461,48 +2459,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad2c83ee-d862-4885-87a2-a82bd62310a5 + - 49d33a44-2873-4d8a-86a8-215024732121 status: 200 OK code: 200 - duration: 71.006ms + duration: 93.651125ms - id: 50 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":"test_secret","value":null},{"key":"foo_secret","value":"bar_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/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 - method: GET + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 818 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:18.457715Z"}' + 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"}' headers: Content-Length: - - "818" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:24 GMT + - Thu, 20 Mar 2025 15:39:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2510,10 +2510,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da849ada-fa69-405f-a971-5bd84b125e7f + - 48657758-81c1-401a-b08c-5786bc926bd0 status: 200 OK code: 200 - duration: 62.811ms + duration: 325.674583ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2538,20 +2538,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 818 + content_length: 683 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"ready","tags":[],"updated_at":"2025-01-24T15:39:18.457715Z"}' + 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"}' headers: Content-Length: - - "818" + - "683" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:25 GMT + - Thu, 20 Mar 2025 15:39:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2559,10 +2559,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32eb4cf8-c9d6-41dd-85e3-720822310d58 + - bb42bb73-fb7f-44a2-b37f-9b4c7c9f45ec status: 200 OK code: 200 - duration: 68.708ms + duration: 66.661667ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 - method: DELETE + - 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 response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 824 + content_length: 681 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:39:25.767895464Z"}' + 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"}' headers: Content-Length: - - "824" + - "681" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:25 GMT + - Thu, 20 Mar 2025 15:39:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2608,10 +2608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e80cf96-92cc-4482-900a-ad806bf33723 + - b467c98f-1bf7-4f64-9fa1-98b46efd2105 status: 200 OK code: 200 - duration: 294.566792ms + duration: 85.556875ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2636,20 +2636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 821 + content_length: 681 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:10.160964Z","description":"","environment_variables":{"foo":"bar"},"error_message":null,"id":"04b69cb5-04e2-4d95-8bb9-7c08306b54e3","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/funcscwtfenvtestu6ictxdj","registry_namespace_id":"5fa1b3e4-d14d-4873-8ea0-440e754adba6","secret_environment_variables":[{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$z1FaNLbA75K+MU65ss4lMg$T3MpFaDGRBTxYixU5HyBc2KaA9KvVWt5TqU+0qfY1Oo","key":"test_secret"},{"hashed_value":"$argon2id$v=19$m=65536,t=1,p=2$G5o70NYj3KT+wxdyGSnVmQ$ik3UcOHazk9AGPgDhRMZaI/tHu4r0EpES4F1q/HT1DA","key":"foo_secret"}],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:39:25.767895Z"}' + 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"}' headers: Content-Length: - - "821" + - "681" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:26 GMT + - Thu, 20 Mar 2025 15:39:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2657,10 +2657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a29d309-fae8-4829-a1ad-c5c23b64d90e + - 95cf33da-8bd4-4c36-81f5-bbc620774a2b status: 200 OK code: 200 - duration: 69.206458ms + duration: 69.5475ms - 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.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/04b69cb5-04e2-4d95-8bb9-7c08306b54e3 + - 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 response: proto: HTTP/2.0 @@ -2685,20 +2685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 37 + content_length: 681 uncompressed: false - body: '{"message":"Namespace was not found"}' + 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"}' headers: Content-Length: - - "37" + - "681" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:31 GMT + - Thu, 20 Mar 2025 15:39:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2706,11 +2706,256 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4521157-c891-4b37-a795-14c66fa0e9b9 - status: 404 Not Found - code: 404 - duration: 25.239584ms + - ec288f29-74de-4240-b7cb-1f67e9b42e11 + status: 200 OK + code: 200 + duration: 126.61175ms - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + 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"}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 15:39: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: + - c9b6078e-4bac-4ebc-9a41-4b433e5213f9 + status: 200 OK + code: 200 + duration: 113.637375ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 681 + 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"}' + headers: + Content-Length: + - "681" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 15:39:13 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: + - 928b2892-b559-4ccd-a0a0-356dc3cbccd8 + status: 200 OK + code: 200 + duration: 99.556834ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 687 + 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"}' + headers: + Content-Length: + - "687" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 15:39:13 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: + - b6d46a22-8d10-475d-8209-497d1773949b + status: 200 OK + code: 200 + duration: 297.792625ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 684 + 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"}' + headers: + Content-Length: + - "684" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 20 Mar 2025 15:39:13 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: + - 98cb4149-9792-442c-a20a-8dcbc431c3a2 + status: 200 OK + code: 200 + duration: 70.9355ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + 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:39:18 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: + - 4c6f7016-2648-4926-ab42-e3ce9ed2b907 + status: 404 Not Found + code: 404 + duration: 44.102667ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2727,7 +2972,7 @@ 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 + - 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 response: @@ -2738,7 +2983,7 @@ interactions: trailer: {} content_length: 477 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274067Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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-01-24T15:39:31.373274067Z"}' + 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"}' headers: Content-Length: - "477" @@ -2747,9 +2992,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:31 GMT + - Thu, 20 Mar 2025 15:39:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2757,11 +3002,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6ac16e6-2826-4c40-936d-0a3c6867964b + - 3d3507a3-b6b2-4be5-bb0e-7df3a42d9d3b status: 200 OK code: 200 - duration: 264.536291ms - - id: 56 + duration: 365.954833ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2776,8 +3021,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -2787,7 +3032,7 @@ interactions: trailer: {} content_length: 471 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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-01-24T15:39:31.373274Z"}' + 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"}' headers: Content-Length: - "471" @@ -2796,9 +3041,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:31 GMT + - Thu, 20 Mar 2025 15:39:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2806,11 +3051,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71b7acbb-6de5-4f6e-95c0-8e70e1127268 + - f0b9f858-8bb8-470a-838c-a5089f691069 status: 200 OK code: 200 - duration: 64.372458ms - - id: 57 + duration: 90.811667ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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:24 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: + - e94b02dd-52c8-47cd-88b2-07a28faee96d + status: 200 OK + code: 200 + duration: 86.028125ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2825,8 +3119,253 @@ 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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2cff5010-fa3c-4d79-bcbd-4cebf6b74366 + status: 200 OK + code: 200 + duration: 81.695042ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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:34 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: + - 34340795-d81e-4d37-8898-765ec58f8577 + status: 200 OK + code: 200 + duration: 93.583334ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 @@ -2836,7 +3375,7 @@ interactions: trailer: {} content_length: 550 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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/funcscwtftagstest3tua7bua","registry_namespace_id":"fe71e42a-1541-4ca4-9e41-7d9bad13f3b8","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:39:32.524783Z"}' + 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" @@ -2845,9 +3384,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:36 GMT + - Thu, 20 Mar 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2855,11 +3394,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 424ccb3b-0314-4ed5-86c8-d4ae0358850f + - a6bf1a95-8d6d-4193-9a9f-cdcc6779f7fd status: 200 OK code: 200 - duration: 79.068083ms - - id: 58 + duration: 112.902167ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2874,8 +3413,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -2885,7 +3424,7 @@ interactions: trailer: {} content_length: 550 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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/funcscwtftagstest3tua7bua","registry_namespace_id":"fe71e42a-1541-4ca4-9e41-7d9bad13f3b8","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:39:32.524783Z"}' + 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" @@ -2894,9 +3433,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:36 GMT + - Thu, 20 Mar 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2904,11 +3443,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2c30f19-a5bf-45e2-87c9-91089d979bb8 + - 9cffacbd-1a05-4062-8651-23886ecdb816 status: 200 OK code: 200 - duration: 62.643917ms - - id: 59 + duration: 188.85775ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2923,8 +3462,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -2934,7 +3473,7 @@ interactions: trailer: {} content_length: 550 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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/funcscwtftagstest3tua7bua","registry_namespace_id":"fe71e42a-1541-4ca4-9e41-7d9bad13f3b8","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:39:32.524783Z"}' + 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" @@ -2943,9 +3482,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:36 GMT + - Thu, 20 Mar 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2953,11 +3492,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d5ddca5-4ad0-4480-94d5-6cfafac563ff + - 1bd8ddcb-871a-4ddb-9c6c-3df20aa55575 status: 200 OK code: 200 - duration: 70.562833ms - - id: 60 + duration: 108.424333ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2972,8 +3511,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -2983,7 +3522,7 @@ interactions: trailer: {} content_length: 550 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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/funcscwtftagstest3tua7bua","registry_namespace_id":"fe71e42a-1541-4ca4-9e41-7d9bad13f3b8","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:39:32.524783Z"}' + 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" @@ -2992,9 +3531,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:37 GMT + - Thu, 20 Mar 2025 15:39:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3002,11 +3541,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90d48436-557d-4494-a6ce-bf0f56c37214 + - a57be5e3-df37-452d-90a1-91a446cfed36 status: 200 OK code: 200 - duration: 78.496ms - - id: 61 + duration: 78.307541ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3021,8 +3560,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -3032,7 +3571,7 @@ interactions: trailer: {} content_length: 550 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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/funcscwtftagstest3tua7bua","registry_namespace_id":"fe71e42a-1541-4ca4-9e41-7d9bad13f3b8","secret_environment_variables":[],"status":"ready","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:39:32.524783Z"}' + 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" @@ -3041,9 +3580,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:38 GMT + - Thu, 20 Mar 2025 15:39:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3051,11 +3590,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88e8fd3c-efd2-484e-b6ab-3a2445be90af + - 721a452f-3a89-40e0-9713-e53a653424f2 status: 200 OK code: 200 - duration: 70.681292ms - - id: 62 + duration: 88.976375ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3070,8 +3609,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -3081,7 +3620,7 @@ interactions: trailer: {} content_length: 556 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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/funcscwtftagstest3tua7bua","registry_namespace_id":"fe71e42a-1541-4ca4-9e41-7d9bad13f3b8","secret_environment_variables":[],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:39:38.345823002Z"}' + 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" @@ -3090,9 +3629,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:38 GMT + - Thu, 20 Mar 2025 15:39:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3100,11 +3639,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45fd2744-fe0d-4b0e-8bf4-51a14433004b + - 1a915fce-1dd7-4be2-95f5-83e51805a421 status: 200 OK code: 200 - duration: 212.041ms - - id: 63 + duration: 432.581458ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3119,8 +3658,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -3130,7 +3669,7 @@ interactions: trailer: {} content_length: 553 uncompressed: false - body: '{"created_at":"2025-01-24T15:39:31.373274Z","description":"","environment_variables":{},"error_message":null,"id":"aa00f459-4a3d-4590-815e-10de981bae86","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/funcscwtftagstest3tua7bua","registry_namespace_id":"fe71e42a-1541-4ca4-9e41-7d9bad13f3b8","secret_environment_variables":[],"status":"deleting","tags":["tag1","tag2"],"updated_at":"2025-01-24T15:39:38.345823Z"}' + 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" @@ -3139,9 +3678,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:38 GMT + - Thu, 20 Mar 2025 15:39:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3149,11 +3688,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8a70626-9a5a-48af-ba93-389ac11e7c99 + - 09d547a6-83db-424d-a3f9-f47c3d9cbed6 status: 200 OK code: 200 - duration: 76.73475ms - - id: 64 + duration: 103.603834ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3168,8 +3707,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -3188,9 +3727,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:43 GMT + - Thu, 20 Mar 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3198,11 +3737,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba5c5782-d248-4635-8d49-35356cadd30d + - a1d8c169-a412-49ae-a6e0-3db56118c12b status: 404 Not Found code: 404 - duration: 32.525709ms - - id: 65 + duration: 39.81175ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3217,8 +3756,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/aa00f459-4a3d-4590-815e-10de981bae86 + - 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 @@ -3237,9 +3776,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:43 GMT + - Thu, 20 Mar 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3247,7 +3786,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cccb654-940e-4ba6-be92-51efc460bc2b + - c6d55828-6a81-4c1b-ae66-ae1eb0c01b78 status: 404 Not Found code: 404 - duration: 26.549208ms + duration: 31.265542ms