diff --git a/docs/resources/container.md b/docs/resources/container.md index d1653a11a1..05cd4ead5b 100644 --- a/docs/resources/container.md +++ b/docs/resources/container.md @@ -99,6 +99,8 @@ The following arguments are supported: - `deploy` - (Optional) Boolean indicating whether the container is in a production environment. +- `local_storage_limit` - Local storage limit of the container (in MB) + Note that if you want to use your own configuration, you must consult our configuration [restrictions](https://www.scaleway.com/en/docs/serverless-containers/reference-content/containers-limitations/#configuration-restrictions) section. ## Attributes Reference diff --git a/internal/services/container/container.go b/internal/services/container/container.go index f8014b0f62..80d5f44d34 100644 --- a/internal/services/container/container.go +++ b/internal/services/container/container.go @@ -235,6 +235,12 @@ func ResourceContainer() *schema.Resource { }, }, }, + "local_storage_limit": { + Type: schema.TypeInt, + Description: "Local storage limit of the container (in MB)", + Optional: true, + Computed: true, + }, // computed "status": { Type: schema.TypeString, @@ -351,6 +357,7 @@ func ResourceContainerRead(ctx context.Context, d *schema.ResourceData, m interf _ = d.Set("health_check", flattenHealthCheck(co.HealthCheck)) _ = d.Set("scaling_option", flattenScalingOption(co.ScalingOption)) _ = d.Set("region", co.Region.String()) + _ = d.Set("local_storage_limit", int(co.LocalStorageLimit)) return nil } @@ -472,6 +479,10 @@ func ResourceContainerUpdate(ctx context.Context, d *schema.ResourceData, m inte req.Redeploy = &imageHasChanged } + if d.HasChanges("local_storage_limit") { + req.LocalStorageLimit = scw.Uint32Ptr(uint32(d.Get("local_storage_limit").(int))) + } + con, err := api.UpdateContainer(req, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) diff --git a/internal/services/container/container_test.go b/internal/services/container/container_test.go index cc97daacb5..3fb1cdaadd 100644 --- a/internal/services/container/container_test.go +++ b/internal/services/container/container_test.go @@ -46,6 +46,7 @@ func TestAccContainer_Basic(t *testing.T) { resource.TestCheckResourceAttrSet("scaleway_container.main", "max_scale"), resource.TestCheckResourceAttrSet("scaleway_container.main", "min_scale"), resource.TestCheckResourceAttrSet("scaleway_container.main", "privacy"), + resource.TestCheckResourceAttrSet("scaleway_container.main", "local_storage_limit"), ), }, { @@ -63,6 +64,7 @@ func TestAccContainer_Basic(t *testing.T) { max_scale = 20 timeout = 300 deploy = false + local_storage_limit = 1000 } `, Check: resource.ComposeTestCheckFunc( @@ -79,6 +81,7 @@ func TestAccContainer_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_container.main", "deploy", "false"), resource.TestCheckResourceAttr("scaleway_container.main", "privacy", containerSDK.ContainerPrivacyPublic.String()), resource.TestCheckResourceAttr("scaleway_container.main", "protocol", containerSDK.ContainerProtocolHTTP1.String()), + resource.TestCheckResourceAttr("scaleway_container.main", "local_storage_limit", "1000"), ), }, { @@ -96,6 +99,7 @@ func TestAccContainer_Basic(t *testing.T) { memory_limit = 1120 cpu_limit = 280 deploy = false + local_storage_limit = 1500 } `, Check: resource.ComposeTestCheckFunc( @@ -111,6 +115,7 @@ func TestAccContainer_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_container.main", "max_concurrency", "80"), resource.TestCheckResourceAttr("scaleway_container.main", "deploy", "false"), resource.TestCheckResourceAttr("scaleway_container.main", "protocol", containerSDK.ContainerProtocolHTTP1.String()), + resource.TestCheckResourceAttr("scaleway_container.main", "local_storage_limit", "1500"), ), }, }, diff --git a/internal/services/container/helpers_container.go b/internal/services/container/helpers_container.go index d56dab179f..cf78fe70b1 100644 --- a/internal/services/container/helpers_container.go +++ b/internal/services/container/helpers_container.go @@ -135,6 +135,10 @@ func setCreateContainerRequest(d *schema.ResourceData, region scw.Region) (*cont req.ScalingOption = scalingOptionReq } + if localStorageLimit, ok := d.GetOk("local_storage_limit"); ok { + req.LocalStorageLimit = scw.Uint32Ptr(uint32(localStorageLimit.(int))) + } + return req, nil } diff --git a/internal/services/container/testdata/container-basic.cassette.yaml b/internal/services/container/testdata/container-basic.cassette.yaml index c63c9c1844..1b989760ae 100644 --- a/internal/services/container/testdata/container-basic.cassette.yaml +++ b/internal/services/container/testdata/container-basic.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 158 + content_length: 162 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-ns-happy-goldwasser","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"tf-ns-youthful-nightingale","environment_variables":{},"project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","secret_environment_variables":[],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 474 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871148Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","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:37:49.305871148Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442287Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-10T12:46:30.096442287Z"}' headers: Content-Length: - - "474" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:49 GMT + - Mon, 10 Mar 2025 12:46:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29bef435-54f6-4eea-9eff-70894062a05f + - 98f87064-ca61-416e-932a-b83e7e26bacc status: 200 OK code: 200 - duration: 855.073ms + duration: 564.786542ms - 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/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 468 + content_length: 472 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","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:37:49.305871Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-03-10T12:46:30.096442Z"}' headers: Content-Length: - - "468" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:49 GMT + - Mon, 10 Mar 2025 12:46:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bf4f775-bc7c-4d02-9829-ee4eb0944637 + - 5bedd8c3-da22-47f7-802d-b9b07ca85d2d status: 200 OK code: 200 - duration: 80.744791ms + duration: 40.704334ms - 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/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 561 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:37:52.955153Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "558" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:54 GMT + - Mon, 10 Mar 2025 12:46:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03352e1e-a159-4ce3-bc8f-374e140cfb15 + - 1800a5f7-01bd-4395-bd7a-2aa9005b56d1 status: 200 OK code: 200 - duration: 63.002959ms + duration: 59.167584ms - 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/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 561 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:37:52.955153Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "558" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:37:59 GMT + - Mon, 10 Mar 2025 12:46:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb33e9d4-ee42-4651-ac8e-3f7ad88b9280 + - da1a8f84-6ac3-42f0-b8e3-d421383de7c4 status: 200 OK code: 200 - duration: 69.094166ms + duration: 47.265333ms - 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/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 561 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:37:52.955153Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "558" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:04 GMT + - Mon, 10 Mar 2025 12:46:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,48 +244,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb4bf278-970c-4f60-a435-0913cac8e151 + - 2c7f697e-a3ed-4e2b-a724-435b7a2cf281 status: 200 OK code: 200 - duration: 58.446875ms + duration: 39.58575ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 213 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-co-laughing-almeida","privacy":"public","protocol":"http1","secret_environment_variables":null,"http_option":"enabled","sandbox":"unknown_sandbox"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 918 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:37:52.955153Z"}' + body: '{"cpu_limit":1000,"created_at":"2025-03-10T12:46:35.543397614Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-tf-co-laughing-almeida.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"ce220609-6dcb-4dd3-b127-dded9c9ef9d0","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-laughing-almeida","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/tf-co-laughing-almeida:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:35.543397614Z"}' headers: Content-Length: - - "558" + - "918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:09 GMT + - Mon, 10 Mar 2025 12:46:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9d3b9e8-8fa9-4cc4-94f1-5889f40369d1 + - e3048d3a-6415-43c0-a036-7965b2c9beae status: 200 OK code: 200 - duration: 67.713292ms + duration: 337.723833ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/ce220609-6dcb-4dd3-b127-dded9c9ef9d0 method: GET response: proto: HTTP/2.0 @@ -321,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 912 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:37:52.955153Z"}' + body: '{"cpu_limit":1000,"created_at":"2025-03-10T12:46:35.543398Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-tf-co-laughing-almeida.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"ce220609-6dcb-4dd3-b127-dded9c9ef9d0","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-laughing-almeida","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/tf-co-laughing-almeida:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:35.543398Z"}' headers: Content-Length: - - "558" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:14 GMT + - Mon, 10 Mar 2025 12:46:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 888b08d0-507b-4cb5-a20c-2e7298fc4f75 + - 9337d77c-7cf6-4359-a4dc-549ed32d35a8 status: 200 OK code: 200 - duration: 67.586916ms + duration: 69.249166ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/ce220609-6dcb-4dd3-b127-dded9c9ef9d0 method: GET response: proto: HTTP/2.0 @@ -370,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 912 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"cpu_limit":1000,"created_at":"2025-03-10T12:46:35.543398Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-tf-co-laughing-almeida.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"ce220609-6dcb-4dd3-b127-dded9c9ef9d0","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-laughing-almeida","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/tf-co-laughing-almeida:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:35.543398Z"}' headers: Content-Length: - - "556" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:19 GMT + - Mon, 10 Mar 2025 12:46:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fa82dbc-2ce5-4648-bc3b-d28c31e6e758 + - a6f0a356-a8a1-4b05-ad89-b28b47d608fe status: 200 OK code: 200 - duration: 64.991167ms + duration: 48.49725ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -419,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 561 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "556" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:19 GMT + - Mon, 10 Mar 2025 12:46:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ac10610-991a-4752-b5ca-3bc674eb1e5a + - c1960559-52ab-4856-9561-a060c9bd31cb status: 200 OK code: 200 - duration: 69.540709ms + duration: 51.719959ms - id: 9 request: proto: HTTP/1.1 @@ -459,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/ce220609-6dcb-4dd3-b127-dded9c9ef9d0 method: GET response: proto: HTTP/2.0 @@ -468,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 912 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"cpu_limit":1000,"created_at":"2025-03-10T12:46:35.543398Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-tf-co-laughing-almeida.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"ce220609-6dcb-4dd3-b127-dded9c9ef9d0","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-laughing-almeida","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/tf-co-laughing-almeida:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:35.543398Z"}' headers: Content-Length: - - "556" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:19 GMT + - Mon, 10 Mar 2025 12:46:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,50 +491,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed5d0992-dc00-4d7d-8e04-76368c6d178c + - 44ca5949-5039-4e5f-bfae-c8dd25cff00d status: 200 OK code: 200 - duration: 68.79ms + duration: 63.278542ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 213 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-co-determined-yalow","privacy":"public","protocol":"http1","secret_environment_variables":null,"http_option":"enabled","sandbox":"unknown_sandbox"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 916 + content_length: 561 uncompressed: false - body: '{"cpu_limit":1000,"created_at":"2025-01-24T15:38:20.653377495Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-tf-co-determined-yalow.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"fbb30b75-0f99-440f-a6b7-d4774e155bdd","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-determined-yalow","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/tf-co-determined-yalow:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:20.653377495Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "916" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:20 GMT + - Mon, 10 Mar 2025 12:46:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10c19f6b-697c-43da-9ee0-19b890b89b9c + - fbaf20ab-8071-4a60-8342-c31e1c212156 status: 200 OK code: 200 - duration: 728.42825ms + duration: 43.191792ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fbb30b75-0f99-440f-a6b7-d4774e155bdd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/ce220609-6dcb-4dd3-b127-dded9c9ef9d0 method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 910 + content_length: 912 uncompressed: false - body: '{"cpu_limit":1000,"created_at":"2025-01-24T15:38:20.653377Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-tf-co-determined-yalow.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"fbb30b75-0f99-440f-a6b7-d4774e155bdd","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-determined-yalow","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/tf-co-determined-yalow:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:20.653377Z"}' + body: '{"cpu_limit":1000,"created_at":"2025-03-10T12:46:35.543398Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-tf-co-laughing-almeida.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"ce220609-6dcb-4dd3-b127-dded9c9ef9d0","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-laughing-almeida","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/tf-co-laughing-almeida:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:35.543398Z"}' headers: Content-Length: - - "910" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:20 GMT + - Mon, 10 Mar 2025 12:46:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39ce8f87-c397-4eb8-ae83-fc73ac1c9f97 + - 7abf6c95-6c06-4d50-bcf7-71daa67c4b30 status: 200 OK code: 200 - duration: 81.644209ms + duration: 62.1985ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fbb30b75-0f99-440f-a6b7-d4774e155bdd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/ce220609-6dcb-4dd3-b127-dded9c9ef9d0 method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 910 + content_length: 912 uncompressed: false - body: '{"cpu_limit":1000,"created_at":"2025-01-24T15:38:20.653377Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-tf-co-determined-yalow.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"fbb30b75-0f99-440f-a6b7-d4774e155bdd","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-determined-yalow","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/tf-co-determined-yalow:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:20.653377Z"}' + body: '{"cpu_limit":1000,"created_at":"2025-03-10T12:46:35.543398Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-tf-co-laughing-almeida.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"ce220609-6dcb-4dd3-b127-dded9c9ef9d0","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-laughing-almeida","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/tf-co-laughing-almeida:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:35.543398Z"}' headers: Content-Length: - - "910" + - "912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:21 GMT + - Mon, 10 Mar 2025 12:46:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54f90965-cd1d-4fbc-ab72-da863e2b7e2d + - fbd49a19-6ce1-4c96-abe9-cd14cb1e9b09 status: 200 OK code: 200 - duration: 72.007875ms + duration: 57.380875ms - id: 13 request: proto: HTTP/1.1 @@ -657,29 +657,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/8507b8e0-08ed-46f8-9016-e5067dd13834 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/ce220609-6dcb-4dd3-b127-dded9c9ef9d0 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 916 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"cpu_limit":1000,"created_at":"2025-03-10T12:46:35.543398Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-tf-co-laughing-almeida.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"ce220609-6dcb-4dd3-b127-dded9c9ef9d0","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-laughing-almeida","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/tf-co-laughing-almeida:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"deleting","timeout":"300s","updated_at":"2025-03-10T12:46:37.120374088Z"}' headers: Content-Length: - - "556" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:21 GMT + - Mon, 10 Mar 2025 12:46:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71a5c83b-19f3-479f-b078-53d10abd8f16 + - ccd6aadd-c36d-4e24-b92e-83f7f5dd3d60 status: 200 OK code: 200 - duration: 78.16375ms + duration: 135.306041ms - id: 14 request: proto: HTTP/1.1 @@ -706,8 +706,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/containers/fbb30b75-0f99-440f-a6b7-d4774e155bdd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 910 + content_length: 561 uncompressed: false - body: '{"cpu_limit":1000,"created_at":"2025-01-24T15:38:20.653377Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-tf-co-determined-yalow.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"fbb30b75-0f99-440f-a6b7-d4774e155bdd","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-determined-yalow","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/tf-co-determined-yalow:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:20.653377Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "910" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:21 GMT + - Mon, 10 Mar 2025 12:46:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,48 +736,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32f8834c-0986-45a2-b4f8-52f6d0e1e56d + - f5951611-4389-49af-8398-9b9048301b1a status: 200 OK code: 200 - duration: 77.466375ms + duration: 48.802541ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 321 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"my-container-tf","max_scale":20,"memory_limit":128,"cpu_limit":70,"timeout":"300.000000000s","privacy":"public","protocol":"http1","port":8080,"secret_environment_variables":null,"http_option":"enabled","sandbox":"unknown_sandbox","local_storage_limit":1000}' 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/8507b8e0-08ed-46f8-9016-e5067dd13834 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 895 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"cpu_limit":70,"created_at":"2025-03-10T12:46:46.654439653Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:46.654439653Z"}' headers: Content-Length: - - "556" + - "895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:22 GMT + - Mon, 10 Mar 2025 12:46:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d63461d-6df0-4789-862e-a4b33d4f04ca + - 919577f5-15b4-4431-8eba-f0dfb2551a0f status: 200 OK code: 200 - duration: 68.887625ms + duration: 240.801667ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fbb30b75-0f99-440f-a6b7-d4774e155bdd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -813,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 910 + content_length: 889 uncompressed: false - body: '{"cpu_limit":1000,"created_at":"2025-01-24T15:38:20.653377Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-tf-co-determined-yalow.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"fbb30b75-0f99-440f-a6b7-d4774e155bdd","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-determined-yalow","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/tf-co-determined-yalow:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:20.653377Z"}' + body: '{"cpu_limit":70,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:46.654440Z"}' headers: Content-Length: - - "910" + - "889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:22 GMT + - Mon, 10 Mar 2025 12:46:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aabc78cc-ab97-48e8-b51f-f029630476a2 + - 1de1bb74-9c1c-4541-bfd6-8148bb2c5c9e status: 200 OK code: 200 - duration: 97.963875ms + duration: 57.492083ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fbb30b75-0f99-440f-a6b7-d4774e155bdd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -862,20 +864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 910 + content_length: 889 uncompressed: false - body: '{"cpu_limit":1000,"created_at":"2025-01-24T15:38:20.653377Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-tf-co-determined-yalow.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"fbb30b75-0f99-440f-a6b7-d4774e155bdd","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-determined-yalow","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/tf-co-determined-yalow:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:20.653377Z"}' + body: '{"cpu_limit":70,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:46.654440Z"}' headers: Content-Length: - - "910" + - "889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:23 GMT + - Mon, 10 Mar 2025 12:46:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce23c644-7cbc-4a8d-81f5-37f54cf839c2 + - 61519e49-d5d4-4ff3-ade8-acef22ee70a8 status: 200 OK code: 200 - duration: 81.729417ms + duration: 55.044167ms - id: 18 request: proto: HTTP/1.1 @@ -902,29 +904,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/containers/fbb30b75-0f99-440f-a6b7-d4774e155bdd - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 914 + content_length: 561 uncompressed: false - body: '{"cpu_limit":1000,"created_at":"2025-01-24T15:38:20.653377Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-tf-co-determined-yalow.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"fbb30b75-0f99-440f-a6b7-d4774e155bdd","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-determined-yalow","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/tf-co-determined-yalow:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"deleting","timeout":"300s","updated_at":"2025-01-24T15:38:23.655751211Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "914" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:23 GMT + - Mon, 10 Mar 2025 12:46:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbfea9ca-90c8-4a7b-aa0c-45b10c0363c1 + - 61b38c7a-e0ae-49bf-aa05-c72f81e2af1e status: 200 OK code: 200 - duration: 144.118417ms + duration: 72.129625ms - id: 19 request: proto: HTTP/1.1 @@ -951,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -960,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 889 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"cpu_limit":70,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:46.654440Z"}' headers: Content-Length: - - "556" + - "889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:23 GMT + - Mon, 10 Mar 2025 12:46:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,50 +983,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b59e7374-0ced-4201-85f1-4247634d58ad + - 12c38835-bfdd-4dde-a682-baa47b6fd8bb status: 200 OK code: 200 - duration: 63.983083ms + duration: 61.252583ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 294 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"my-container-tf","max_scale":20,"memory_limit":128,"cpu_limit":70,"timeout":"300.000000000s","privacy":"public","protocol":"http1","port":8080,"secret_environment_variables":null,"http_option":"enabled","sandbox":"unknown_sandbox"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 893 + content_length: 561 uncompressed: false - body: '{"cpu_limit":70,"created_at":"2025-01-24T15:38:24.132480250Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:24.132480250Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "893" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:24 GMT + - Mon, 10 Mar 2025 12:46:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ff7a97-23a9-40a0-b399-a4bda887ca10 + - 7ef4fae8-6c07-48ee-8892-cc8d6c2c5147 status: 200 OK code: 200 - duration: 356.839584ms + duration: 45.526667ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -1060,20 +1060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 887 + content_length: 889 uncompressed: false - body: '{"cpu_limit":70,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:24.132480Z"}' + body: '{"cpu_limit":70,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:46.654440Z"}' headers: Content-Length: - - "887" + - "889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:24 GMT + - Mon, 10 Mar 2025 12:46:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be190fd2-2e10-409a-8006-f00230884121 + - 774f4d3f-4770-45aa-ab77-2ae5499dc2c0 status: 200 OK code: 200 - duration: 83.552166ms + duration: 54.0425ms - id: 22 request: proto: HTTP/1.1 @@ -1100,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -1109,20 +1109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 887 + content_length: 561 uncompressed: false - body: '{"cpu_limit":70,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:24.132480Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "887" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:24 GMT + - Mon, 10 Mar 2025 12:46:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4b4838b-6abd-42bf-b00a-7ea82e2c3571 + - 8570f388-685b-4333-80b1-b9671169c5d4 status: 200 OK code: 200 - duration: 81.643667ms + duration: 44.102042ms - id: 23 request: proto: HTTP/1.1 @@ -1149,8 +1149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -1158,20 +1158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 889 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"cpu_limit":70,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-03-10T12:46:46.654440Z"}' headers: Content-Length: - - "556" + - "889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:25 GMT + - Mon, 10 Mar 2025 12:46:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,48 +1179,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4e020f7-d0f3-49dd-b2e7-c81c85c86621 + - 044ccb9e-9a77-4c55-bdaf-1ab4b15a5ad5 status: 200 OK code: 200 - duration: 147.717ms + duration: 55.641541ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 283 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"min_scale":1,"max_scale":2,"memory_limit":1120,"cpu_limit":280,"privacy":"unknown_privacy","max_concurrency":80,"protocol":"unknown_protocol","port":5000,"secret_environment_variables":null,"http_option":"unknown_http_option","sandbox":"unknown_sandbox","local_storage_limit":1500}' 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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 887 + content_length: 893 uncompressed: false - body: '{"cpu_limit":70,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:24.132480Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-03-10T12:46:48.198661595Z"}' headers: Content-Length: - - "887" + - "893" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:25 GMT + - Mon, 10 Mar 2025 12:46:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1526acff-1e5a-4fb9-b710-38588e1e1678 + - a8268233-4098-4743-9e4f-ba630f552415 status: 200 OK code: 200 - duration: 70.859666ms + duration: 93.3135ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -1256,20 +1258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 890 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-03-10T12:46:48.198662Z"}' headers: Content-Length: - - "556" + - "890" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:26 GMT + - Mon, 10 Mar 2025 12:46:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac94b2f6-c0ff-4cc3-b036-048cb7f54e12 + - caeaa084-d9e3-4584-a562-5a42ba13c005 status: 200 OK code: 200 - duration: 70.597125ms + duration: 54.837459ms - id: 26 request: proto: HTTP/1.1 @@ -1296,8 +1298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -1305,20 +1307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 887 + content_length: 890 uncompressed: false - body: '{"cpu_limit":70,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:24.132480Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-03-10T12:46:48.198662Z"}' headers: Content-Length: - - "887" + - "890" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:26 GMT + - Mon, 10 Mar 2025 12:46:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,10 +1328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4a49a19-b189-4b6b-a1c6-d4184ae4cdb0 + - f50324af-27e5-4fa3-bc8e-712000dc2fa0 status: 200 OK code: 200 - duration: 80.470583ms + duration: 71.350708ms - id: 27 request: proto: HTTP/1.1 @@ -1345,8 +1347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -1354,20 +1356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 556 + content_length: 928 uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-03-10T12:46:54.743874Z"}' headers: Content-Length: - - "556" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:27 GMT + - Mon, 10 Mar 2025 12:46:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0235cf3-bd14-4797-8758-297e80cd8a48 + - 488eb1eb-d890-4fdc-9194-ab5ac4fa5d8e status: 200 OK code: 200 - duration: 60.968625ms + duration: 63.753625ms - id: 28 request: proto: HTTP/1.1 @@ -1394,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -1403,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 887 + content_length: 928 uncompressed: false - body: '{"cpu_limit":70,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":8080,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:38:24.132480Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-03-10T12:46:54.743874Z"}' headers: Content-Length: - - "887" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:27 GMT + - Mon, 10 Mar 2025 12:46:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1424,50 +1426,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9a320be-64a9-4544-ac17-44bb1c891eaf + - 2cd25453-881b-4c8a-9787-278be31c0329 status: 200 OK code: 200 - duration: 87.607584ms + duration: 66.92575ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 256 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"min_scale":1,"max_scale":2,"memory_limit":1120,"cpu_limit":280,"privacy":"unknown_privacy","max_concurrency":80,"protocol":"unknown_protocol","port":5000,"secret_environment_variables":null,"http_option":"unknown_http_option","sandbox":"unknown_sandbox"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 891 + content_length: 928 uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:38:27.306207623Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-03-10T12:46:54.743874Z"}' headers: Content-Length: - - "891" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:27 GMT + - Mon, 10 Mar 2025 12:46:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9841d1a3-2a1d-4d77-96c6-2638649002ac + - f9a900a6-0fd8-4a29-9d86-212f70e6388d status: 200 OK code: 200 - duration: 110.09125ms + duration: 62.253167ms - id: 30 request: proto: HTTP/1.1 @@ -1494,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -1503,20 +1503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 888 + content_length: 561 uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:38:27.306208Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "888" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:27 GMT + - Mon, 10 Mar 2025 12:46:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e661a4ac-4b8f-40b6-9aeb-0d5d7bc96cf5 + - 0aab5140-c0e4-43c9-8f4b-32675f0d17ca status: 200 OK code: 200 - duration: 77.479583ms + duration: 44.311083ms - id: 31 request: proto: HTTP/1.1 @@ -1543,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -1552,20 +1552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 888 + content_length: 928 uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:38:27.306208Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-03-10T12:46:54.743874Z"}' headers: Content-Length: - - "888" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:32 GMT + - Mon, 10 Mar 2025 12:46:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,10 +1573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65b4d8f0-251f-4747-9708-c11e7e09537a + - 991a52b2-2438-45ea-bc26-014661be7211 status: 200 OK code: 200 - duration: 97.2045ms + duration: 74.312916ms - id: 32 request: proto: HTTP/1.1 @@ -1592,8 +1592,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 method: GET response: proto: HTTP/2.0 @@ -1601,20 +1601,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 888 + content_length: 928 uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:38:27.306208Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-03-10T12:46:54.743874Z"}' headers: Content-Length: - - "888" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:37 GMT + - Mon, 10 Mar 2025 12:46:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,10 +1622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e063b68c-9446-4100-9e4d-567c992b3304 + - 0d4cf6e5-aea9-4880-a1ff-3a8b82d9d95b status: 200 OK code: 200 - duration: 95.189125ms + duration: 48.684125ms - id: 33 request: proto: HTTP/1.1 @@ -1641,29 +1641,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f10492aa-7932-41b0-a135-a1973649fb64 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 888 + content_length: 894 uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:38:27.306208Z"}' + body: '{"cpu_limit":280,"created_at":"2025-03-10T12:46:46.654440Z","description":"","domain_name":"tfnsyouthfulnightingss65ennh-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"f10492aa-7932-41b0-a135-a1973649fb64","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"deleting","timeout":"300s","updated_at":"2025-03-10T12:46:59.549797561Z"}' headers: Content-Length: - - "888" + - "894" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:42 GMT + - Mon, 10 Mar 2025 12:46:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,10 +1671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dde37ca9-f446-4a85-be87-dd13648fe29d + - 5cddce18-0d97-4f7e-a5bc-53ce4d9c58f2 status: 200 OK code: 200 - duration: 86.266334ms + duration: 165.586167ms - id: 34 request: proto: HTTP/1.1 @@ -1690,8 +1690,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -1699,20 +1699,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 888 + content_length: 561 uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","timeout":"300s","updated_at":"2025-01-24T15:38:27.306208Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-03-10T12:46:31.547024Z"}' headers: Content-Length: - - "888" + - "561" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:47 GMT + - Mon, 10 Mar 2025 12:46:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,10 +1720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46af01bc-bf9b-48b4-8b9d-de491a667dd1 + - 26f146bf-766b-4ddb-a7a0-d9cb945754ed status: 200 OK code: 200 - duration: 73.476917ms + duration: 45.718917ms - id: 35 request: proto: HTTP/1.1 @@ -1739,29 +1739,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 926 + content_length: 567 uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:38:51.062316Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-03-10T12:46:59.740554570Z"}' headers: Content-Length: - - "926" + - "567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:52 GMT + - Mon, 10 Mar 2025 12:46:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,10 +1769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a07be055-4e77-40df-8dd1-b7b8799f9188 + - 9098487a-99c7-45d0-871a-9c8e5bce9e8e status: 200 OK code: 200 - duration: 82.840375ms + duration: 178.310583ms - id: 36 request: proto: HTTP/1.1 @@ -1788,8 +1788,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -1797,20 +1797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 926 + content_length: 564 uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:38:51.062316Z"}' + body: '{"created_at":"2025-03-10T12:46:30.096442Z","description":"","environment_variables":{},"error_message":null,"id":"3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4","name":"tf-ns-youthful-nightingale","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsyouthfulnightingss65ennh","registry_namespace_id":"919e7b79-795a-4b1c-b32a-e910247e9a4a","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-03-10T12:46:59.740555Z"}' headers: Content-Length: - - "926" + - "564" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:38:52 GMT + - Mon, 10 Mar 2025 12:46:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1818,10 +1818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1b4d2b-c2ed-4f95-a032-838767d8c4cf + - 94d0bfca-15a4-4da9-b617-7f2b3e046654 status: 200 OK code: 200 - duration: 71.590708ms + duration: 51.907833ms - id: 37 request: proto: HTTP/1.1 @@ -1837,400 +1837,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/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 926 - uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:38:51.062316Z"}' - headers: - Content-Length: - - "926" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:38:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6067a2a8-18bd-4b68-abe6-18f4d8eb04e9 - status: 200 OK - code: 200 - duration: 71.197875ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 556 - uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' - headers: - Content-Length: - - "556" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:38:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 717bb669-cdb1-4167-b56f-c767eb1a08bc - status: 200 OK - code: 200 - duration: 74.718875ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 926 - uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:38:51.062316Z"}' - headers: - Content-Length: - - "926" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:38:53 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fd976642-afe0-4721-a07b-0120a993f3b0 - status: 200 OK - code: 200 - duration: 79.289458ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 926 - uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"Image was not found in container registry.","health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","timeout":"300s","updated_at":"2025-01-24T15:38:51.062316Z"}' - headers: - Content-Length: - - "926" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:38:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9932593e-b000-4582-a954-724b82850761 - status: 200 OK - code: 200 - duration: 94.529666ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/5fd9679c-8f0a-483a-87fe-8bc0e5447c47 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 892 - uncompressed: false - body: '{"cpu_limit":280,"created_at":"2025-01-24T15:38:24.132480Z","description":"","domain_name":"tfnshappygoldwasserrpnx7qhp-my-container-tf.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"5fd9679c-8f0a-483a-87fe-8bc0e5447c47","local_storage_limit":1000,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"8507b8e0-08ed-46f8-9016-e5067dd13834","port":5000,"privacy":"public","protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"deleting","timeout":"300s","updated_at":"2025-01-24T15:38:55.035076465Z"}' - headers: - Content-Length: - - "892" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:38:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d2f9874a-6653-4e16-9211-8b27e6df4d77 - status: 200 OK - code: 200 - duration: 147.000584ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 556 - uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:38:17.534702Z"}' - headers: - Content-Length: - - "556" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:38:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dcb420cf-17c5-4be4-ba33-db68bc65aa1c - status: 200 OK - code: 200 - duration: 80.489459ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:38:55.258025240Z"}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:38:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8243d1ac-7419-4359-923d-b74d9422d63b - status: 200 OK - code: 200 - duration: 202.6505ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 559 - uncompressed: false - body: '{"created_at":"2025-01-24T15:37:49.305871Z","description":"","environment_variables":{},"error_message":null,"id":"8507b8e0-08ed-46f8-9016-e5067dd13834","name":"tf-ns-happy-goldwasser","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnshappygoldwasserrpnx7qhp","registry_namespace_id":"807b0724-e4e5-4338-a928-31e715633d5a","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:38:55.258025Z"}' - headers: - Content-Length: - - "559" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:38:55 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a88b1ff-38a1-44f1-a0c8-3bd82f4c54c2 - status: 200 OK - code: 200 - duration: 72.097292ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: GET response: proto: HTTP/2.0 @@ -2249,9 +1857,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:00 GMT + - Mon, 10 Mar 2025 12:47:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2259,11 +1867,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a722186-7c32-470e-8d0c-f5924ee51e0e + - 463ba5ce-ce90-46a9-aa41-8ee07cf35ec5 status: 404 Not Found code: 404 - duration: 25.246583ms - - id: 46 + duration: 25.864916ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2278,8 +1886,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/containers/8507b8e0-08ed-46f8-9016-e5067dd13834 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/3d4b7c0e-b906-40a0-97c0-e5ab10c8b1d4 method: DELETE response: proto: HTTP/2.0 @@ -2298,9 +1906,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:39:00 GMT + - Mon, 10 Mar 2025 12:47:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2308,7 +1916,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66630f40-33d6-45f4-98f8-fc82a817df2f + - 82c6ab42-f381-4ddd-87b2-504b48b86f9f status: 404 Not Found code: 404 - duration: 25.856708ms + duration: 29.114958ms