diff --git a/docs/resources/container.md b/docs/resources/container.md index a4f994af86..effd9f4a68 100644 --- a/docs/resources/container.md +++ b/docs/resources/container.md @@ -22,6 +22,7 @@ resource "scaleway_container_namespace" "main" { resource "scaleway_container" "main" { name = "my-container-02" description = "environment variables test" + tags = ["tag1", "tag2"] namespace_id = scaleway_container_namespace.main.id registry_image = "${scaleway_container_namespace.main.registry_endpoint}/alpine:test" port = 9997 @@ -56,6 +57,8 @@ The following arguments are supported: - `description` (Optional) The description of the container. +- `tags` - (Optional) The list of tags associated with the container. + - `environment_variables` - (Optional) The [environment variables](https://www.scaleway.com/en/docs/serverless-containers/concepts/#environment-variables) of the container. - `secret_environment_variables` - (Optional) The [secret environment variables](https://www.scaleway.com/en/docs/serverless-containers/concepts/#secrets) of the container. @@ -99,7 +102,7 @@ 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) +- `local_storage_limit` - (Optional) 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. diff --git a/docs/resources/container_namespace.md b/docs/resources/container_namespace.md index 66b0488a03..02bb955a17 100644 --- a/docs/resources/container_namespace.md +++ b/docs/resources/container_namespace.md @@ -16,6 +16,7 @@ Refer to the Containers namespace [documentation](https://www.scaleway.com/en/do resource "scaleway_container_namespace" "main" { name = "main-container-namespace" description = "Main container namespace" + tags = ["tag1", "tag2"] } ``` @@ -27,15 +28,17 @@ The following arguments are supported: ~> **Important** Updates to the `name` argument will recreate the namespace. -- `description` (Optional) The description of the namespace. +- `description` - (Optional) The description of the namespace. + +- `tags` - (Optional) The list of tags associated with the namespace. - `region` - (Defaults to [provider](../index.md#region) `region`). The [region](../guides/regions_and_zones.md#regions) in which the namespace is created. - `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The unique identifier of the project that contains the namespace. -- `environment_variables` - The environment variables of the namespace. +- `environment_variables` - (Optional) The environment variables of the namespace. -- `secret_environment_variables` - The secret environment variables of the namespace. +- `secret_environment_variables` - (Optional) The secret environment variables of the namespace. ## Attributes Reference diff --git a/docs/resources/function.md b/docs/resources/function.md index 3fd4e3cc67..1877b50f63 100644 --- a/docs/resources/function.md +++ b/docs/resources/function.md @@ -41,6 +41,8 @@ resource "scaleway_function_namespace" "main" { resource "scaleway_function" "main" { namespace_id = scaleway_function_namespace.main.id + description = "function with zip file" + tags = ["tag1", "tag2"] runtime = "go118" handler = "Handle" privacy = "private" @@ -63,13 +65,15 @@ The following arguments are supported: - `description` (Optional) The description of the function. +- `tags` - (Optional) The list of tags associated with the function. + - `environment_variables` - (Optional) The [environment variables](https://www.scaleway.com/en/docs/compute/functions/concepts/#environment-variables) of the function. - `secret_environment_variables` - (Optional) The [secret environment variables](https://www.scaleway.com/en/docs/compute/functions/concepts/#secrets) of the function. - `privacy` - (Optional) The privacy type defines the way to authenticate to your function. Please check our dedicated [section](https://www.scaleway.com/en/developers/api/serverless-functions/#protocol-9dd4c8). -- `runtime` - Runtime of the function. Runtimes can be fetched using [specific route](https://www.scaleway.com/en/developers/api/serverless-functions/#path-functions-get-a-function) +- `runtime` - (Required) Runtime of the function. Runtimes can be fetched using [specific route](https://www.scaleway.com/en/developers/api/serverless-functions/#path-functions-get-a-function) - `min_scale` - (Optional) The minimum number of function instances running continuously. Defaults to 0. Functions are billed when executed, and using a `min_scale` greater than 0 will cause your function to run constantly. @@ -77,15 +81,15 @@ The following arguments are supported: - `memory_limit` - (Optional) The memory resources in MB to allocate to each function. Defaults to 256 MB. -- `handler` - Handler of the function, depends on the runtime. Refer to the [dedicated documentation](https://www.scaleway.com/en/developers/api/serverless-functions/#path-functions-create-a-new-function) for the list of supported runtimes. +- `handler` - (Required) Handler of the function, depends on the runtime. Refer to the [dedicated documentation](https://www.scaleway.com/en/developers/api/serverless-functions/#path-functions-create-a-new-function) for the list of supported runtimes. - `timeout` - (Optional) The maximum amount of time your function can spend processing a request before being stopped. Defaults to 300s. -- `zip_file` - Path to the zip file containing your function sources to upload. +- `zip_file` - (Optional) Path to the zip file containing your function sources to upload. -- `zip_hash` - The hash of your source zip file, changing it will redeploy the function. Can be any string, changing it will simply trigger a state change. You can use any Terraform hash function to trigger a change on your zip change (see examples). +- `zip_hash` - (Optional) The hash of your source zip file, changing it will redeploy the function. Can be any string, changing it will simply trigger a state change. You can use any Terraform hash function to trigger a change on your zip change (see examples). -- `deploy` - Define whether the function should be deployed. Terraform will wait for the function to be deployed. Your function will be redeployed if you update the source zip file. +- `deploy` - (Optional, defaults to `false`) Define whether the function should be deployed. Terraform will wait for the function to be deployed. Your function will be redeployed if you update the source zip file. - `http_option` - (Optional) Allows both HTTP and HTTPS (`enabled`) or redirect HTTP to HTTPS (`redirected`). Defaults to `enabled`. diff --git a/docs/resources/function_namespace.md b/docs/resources/function_namespace.md index ae276f93d3..fe3c89cd31 100644 --- a/docs/resources/function_namespace.md +++ b/docs/resources/function_namespace.md @@ -16,6 +16,7 @@ Refer to the Functions namespace [documentation](https://www.scaleway.com/en/doc resource "scaleway_function_namespace" "main" { name = "main-function-namespace" description = "Main function namespace" + tags = ["tag1", "tag2"] } ``` @@ -29,13 +30,15 @@ The following arguments are supported: - `description` (Optional) The description of the namespace. +- `tags` - (Optional) The list of tags associated with the namespace. + - `region` - (Defaults to [provider](../index.md#region) `region`). The [region](../guides/regions_and_zones.md#regions) in which the namespace is created. - `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The unique identifier of the project that contains the namespace. -- `environment_variables` - The environment variables of the namespace. +- `environment_variables` - (Optional) The environment variables of the namespace. -- `secret_environment_variables` - The secret environment variables of the namespace. +- `secret_environment_variables` - (Optional) The secret environment variables of the namespace. ## Attributes Reference diff --git a/internal/services/container/container.go b/internal/services/container/container.go index 2d69f6238f..4c64b8e4c3 100644 --- a/internal/services/container/container.go +++ b/internal/services/container/container.go @@ -55,6 +55,14 @@ func ResourceContainer() *schema.Resource { Required: true, Description: "The container namespace associated", }, + "tags": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Optional: true, + Description: "List of tags [\"tag1\", \"tag2\", ...] attached to the container.", + }, "environment_variables": { Type: schema.TypeMap, Optional: true, @@ -361,6 +369,7 @@ func ResourceContainerRead(ctx context.Context, d *schema.ResourceData, m interf _ = d.Set("region", co.Region.String()) _ = d.Set("local_storage_limit", int(co.LocalStorageLimit)) _ = d.Set("secret_environment_variables", flattenContainerSecrets(co.SecretEnvironmentVariables)) + _ = d.Set("tags", types.FlattenSliceString(co.Tags)) return nil } @@ -400,6 +409,10 @@ func ResourceContainerUpdate(ctx context.Context, d *schema.ResourceData, m inte req.SecretEnvironmentVariables = filterSecretEnvsToPatch(expandContainerSecrets(oldEnv), expandContainerSecrets(newEnv)) } + if d.HasChange("tags") { + req.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) + } + if d.HasChanges("min_scale") { req.MinScale = scw.Uint32Ptr(uint32(d.Get("min_scale").(int))) } diff --git a/internal/services/container/container_test.go b/internal/services/container/container_test.go index 5524554749..d86c24ba04 100644 --- a/internal/services/container/container_test.go +++ b/internal/services/container/container_test.go @@ -30,6 +30,7 @@ func TestAccContainer_Basic(t *testing.T) { resource scaleway_container main { namespace_id = scaleway_container_namespace.main.id + tags = ["tag1", "tag2"] } `, Check: resource.ComposeTestCheckFunc( @@ -49,6 +50,9 @@ func TestAccContainer_Basic(t *testing.T) { resource.TestCheckResourceAttrSet("scaleway_container.main", "min_scale"), resource.TestCheckResourceAttrSet("scaleway_container.main", "privacy"), resource.TestCheckResourceAttrSet("scaleway_container.main", "local_storage_limit"), + resource.TestCheckResourceAttr("scaleway_container.main", "tags.#", "2"), + resource.TestCheckResourceAttr("scaleway_container.main", "tags.0", "tag1"), + resource.TestCheckResourceAttr("scaleway_container.main", "tags.1", "tag2"), ), }, { @@ -67,6 +71,7 @@ func TestAccContainer_Basic(t *testing.T) { timeout = 300 deploy = false local_storage_limit = 1000 + tags = ["tag"] } `, Check: resource.ComposeTestCheckFunc( @@ -84,6 +89,8 @@ func TestAccContainer_Basic(t *testing.T) { 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"), + resource.TestCheckResourceAttr("scaleway_container.main", "tags.#", "1"), + resource.TestCheckResourceAttr("scaleway_container.main", "tags.0", "tag"), ), }, { @@ -118,6 +125,7 @@ func TestAccContainer_Basic(t *testing.T) { 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"), + resource.TestCheckResourceAttr("scaleway_container.main", "tags.#", "0"), ), }, }, diff --git a/internal/services/container/helpers_container.go b/internal/services/container/helpers_container.go index 66fdafbd3b..2050b36af1 100644 --- a/internal/services/container/helpers_container.go +++ b/internal/services/container/helpers_container.go @@ -140,6 +140,10 @@ func setCreateContainerRequest(d *schema.ResourceData, region scw.Region) (*cont req.LocalStorageLimit = scw.Uint32Ptr(uint32(localStorageLimit.(int))) } + if tags, ok := d.GetOk("tags"); ok { + req.Tags = types.ExpandStrings(tags) + } + return req, nil } diff --git a/internal/services/container/testdata/container-basic.cassette.yaml b/internal/services/container/testdata/container-basic.cassette.yaml index 1b989760ae..6a973f6662 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: 162 + content_length: 158 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-ns-youthful-nightingale","environment_variables":{},"project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","secret_environment_variables":[],"tags":null}' + body: '{"name":"tf-ns-dazzling-gagarin","environment_variables":{},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","secret_environment_variables":[],"tags":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) 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: 478 + content_length: 523 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981349925Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-05-27T17:51:15.981349925Z","vpc_integration_activated":false}' headers: Content-Length: - - "478" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:30 GMT + - Tue, 27 May 2025 17:51:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98f87064-ca61-416e-932a-b83e7e26bacc + - 7e9184a9-a2fa-4f94-8b96-bd0ac41678cb status: 200 OK code: 200 - duration: 564.786542ms + duration: 630.325431ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 517 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-05-27T17:51:15.981350Z","vpc_integration_activated":false}' headers: Content-Length: - - "472" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:30 GMT + - Tue, 27 May 2025 17:51:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bedd8c3-da22-47f7-802d-b9b07ca85d2d + - 72dcee22-23a3-4635-8137-50e5b7a24c69 status: 200 OK code: 200 - duration: 40.704334ms + duration: 63.263825ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:35 GMT + - Tue, 27 May 2025 17:51:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1800a5f7-01bd-4395-bd7a-2aa9005b56d1 + - ef57724c-640d-4da3-9fb3-c335ea333f5d status: 200 OK code: 200 - duration: 59.167584ms + duration: 59.526422ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:35 GMT + - Tue, 27 May 2025 17:51:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da1a8f84-6ac3-42f0-b8e3-d421383de7c4 + - 16b9ab45-037b-4691-8117-97e432e670d3 status: 200 OK code: 200 - duration: 47.265333ms + duration: 52.402827ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:35 GMT + - Tue, 27 May 2025 17:51:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,28 +244,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c7f697e-a3ed-4e2b-a724-435b7a2cf281 + - 3cf99d7d-e8a1-44ce-a142-d29b6b34cc4c status: 200 OK code: 200 - duration: 39.58575ms + duration: 44.190514ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 213 + content_length: 230 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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"}' + body: '{"namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-co-lucid-ride","privacy":"public","protocol":"http1","secret_environment_variables":null,"http_option":"enabled","sandbox":"unknown_sandbox","tags":["tag1","tag2"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers method: POST response: @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 918 + content_length: 1004 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":1000,"created_at":"2025-05-27T17:51:21.536359627Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-tf-co-lucid-ride.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"3f54ea9c-8ee3-40e7-be47-eced407a286d","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-lucid-ride","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/tf-co-lucid-ride:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T17:51:21.536359627Z"}' headers: Content-Length: - - "918" + - "1004" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:35 GMT + - Tue, 27 May 2025 17:51:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3048d3a-6415-43c0-a036-7965b2c9beae + - e5d1b97e-84cc-4c84-a77d-04a5fab7b2e4 status: 200 OK code: 200 - duration: 337.723833ms + duration: 344.272269ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/3f54ea9c-8ee3-40e7-be47-eced407a286d method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 912 + content_length: 998 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":1000,"created_at":"2025-05-27T17:51:21.536360Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-tf-co-lucid-ride.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"3f54ea9c-8ee3-40e7-be47-eced407a286d","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-lucid-ride","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/tf-co-lucid-ride:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T17:51:21.536360Z"}' headers: Content-Length: - - "912" + - "998" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:35 GMT + - Tue, 27 May 2025 17:51:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9337d77c-7cf6-4359-a4dc-549ed32d35a8 + - b340a108-76d9-4ba4-bdd4-2ce61234bed6 status: 200 OK code: 200 - duration: 69.249166ms + duration: 65.802675ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/3f54ea9c-8ee3-40e7-be47-eced407a286d method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 912 + content_length: 998 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":1000,"created_at":"2025-05-27T17:51:21.536360Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-tf-co-lucid-ride.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"3f54ea9c-8ee3-40e7-be47-eced407a286d","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-lucid-ride","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/tf-co-lucid-ride:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T17:51:21.536360Z"}' headers: Content-Length: - - "912" + - "998" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:35 GMT + - Tue, 27 May 2025 17:51:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6f0a356-a8a1-4b05-ad89-b28b47d608fe + - f0525b48-1e3d-4a9c-8775-30cfd7a37bfb status: 200 OK code: 200 - duration: 48.49725ms + duration: 61.361316ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:36 GMT + - Tue, 27 May 2025 17:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1960559-52ab-4856-9561-a060c9bd31cb + - 338685f4-5655-4136-ac78-8e0d839b4239 status: 200 OK code: 200 - duration: 51.719959ms + duration: 48.600454ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/3f54ea9c-8ee3-40e7-be47-eced407a286d method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 912 + content_length: 998 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":1000,"created_at":"2025-05-27T17:51:21.536360Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-tf-co-lucid-ride.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"3f54ea9c-8ee3-40e7-be47-eced407a286d","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-lucid-ride","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/tf-co-lucid-ride:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T17:51:21.536360Z"}' headers: Content-Length: - - "912" + - "998" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:36 GMT + - Tue, 27 May 2025 17:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44ca5949-5039-4e5f-bfae-c8dd25cff00d + - 46e4b080-3792-4e94-b0ef-79af4a843576 status: 200 OK code: 200 - duration: 63.278542ms + duration: 70.421853ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:36 GMT + - Tue, 27 May 2025 17:51:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbaf20ab-8071-4a60-8342-c31e1c212156 + - a4db51a6-269d-4e24-978e-4bb3277431bb status: 200 OK code: 200 - duration: 43.191792ms + duration: 45.677382ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/3f54ea9c-8ee3-40e7-be47-eced407a286d method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 912 + content_length: 998 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":1000,"created_at":"2025-05-27T17:51:21.536360Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-tf-co-lucid-ride.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"3f54ea9c-8ee3-40e7-be47-eced407a286d","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-lucid-ride","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/tf-co-lucid-ride:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T17:51:21.536360Z"}' headers: Content-Length: - - "912" + - "998" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:36 GMT + - Tue, 27 May 2025 17:51:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7abf6c95-6c06-4d50-bcf7-71daa67c4b30 + - 89f95d9d-d4f1-45fc-9059-540a9a0fdd01 status: 200 OK code: 200 - duration: 62.1985ms + duration: 73.134675ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/3f54ea9c-8ee3-40e7-be47-eced407a286d method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 912 + content_length: 998 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":1000,"created_at":"2025-05-27T17:51:21.536360Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-tf-co-lucid-ride.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"3f54ea9c-8ee3-40e7-be47-eced407a286d","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-lucid-ride","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/tf-co-lucid-ride:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T17:51:21.536360Z"}' headers: Content-Length: - - "912" + - "998" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:37 GMT + - Tue, 27 May 2025 17:51:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbd49a19-6ce1-4c96-abe9-cd14cb1e9b09 + - 31d60f49-6b66-46e8-9623-7e068c576222 status: 200 OK code: 200 - duration: 57.380875ms + duration: 51.043666ms - id: 13 request: proto: HTTP/1.1 @@ -657,8 +657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/3f54ea9c-8ee3-40e7-be47-eced407a286d method: DELETE response: proto: HTTP/2.0 @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 916 + content_length: 1002 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":1000,"created_at":"2025-05-27T17:51:21.536360Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-tf-co-lucid-ride.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"health_check":{"failure_threshold":30,"interval":"10s","tcp":{}},"http_option":"enabled","id":"3f54ea9c-8ee3-40e7-be47-eced407a286d","local_storage_limit":1000,"max_concurrency":50,"max_scale":5,"memory_limit":2048,"min_scale":0,"name":"tf-co-lucid-ride","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/tf-co-lucid-ride:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"deleting","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T17:51:25.732279419Z"}' headers: Content-Length: - - "916" + - "1002" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:37 GMT + - Tue, 27 May 2025 17:51:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccd6aadd-c36d-4e24-b92e-83f7f5dd3d60 + - 1de89a0a-6e0e-486c-b37d-ba67a58093c6 status: 200 OK code: 200 - duration: 135.306041ms + duration: 153.780124ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:37 GMT + - Tue, 27 May 2025 17:51:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,28 +736,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5951611-4389-49af-8398-9b9048301b1a + - cc92cf89-3c51-478a-846c-c024e7e8cbfd status: 200 OK code: 200 - duration: 48.802541ms + duration: 43.597644ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 321 + content_length: 336 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - 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}' + body: '{"namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","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,"tags":["tag"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers method: POST response: @@ -766,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 895 + content_length: 990 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":70,"created_at":"2025-05-27T17:51:26.153249931Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag"],"timeout":"300s","updated_at":"2025-05-27T17:51:26.153249931Z"}' headers: Content-Length: - - "895" + - "990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:46 GMT + - Tue, 27 May 2025 17:51:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 919577f5-15b4-4431-8eba-f0dfb2551a0f + - 64f5e1f4-3c00-4080-9435-584682fcbc76 status: 200 OK code: 200 - duration: 240.801667ms + duration: 305.828164ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -815,20 +815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 889 + content_length: 984 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":70,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag"],"timeout":"300s","updated_at":"2025-05-27T17:51:26.153250Z"}' headers: Content-Length: - - "889" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:46 GMT + - Tue, 27 May 2025 17:51:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1de1bb74-9c1c-4541-bfd6-8148bb2c5c9e + - 4410c6f7-760b-457f-82b7-a32022997238 status: 200 OK code: 200 - duration: 57.492083ms + duration: 54.588452ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -864,20 +864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 889 + content_length: 984 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":70,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag"],"timeout":"300s","updated_at":"2025-05-27T17:51:26.153250Z"}' headers: Content-Length: - - "889" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:46 GMT + - Tue, 27 May 2025 17:51:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61519e49-d5d4-4ff3-ade8-acef22ee70a8 + - fc5adef6-659e-451f-8cc1-a2c628bc4963 status: 200 OK code: 200 - duration: 55.044167ms + duration: 51.053044ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -913,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:47 GMT + - Tue, 27 May 2025 17:51:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61b38c7a-e0ae-49bf-aa05-c72f81e2af1e + - 52636a50-c1f8-43b0-83ca-634f6eb5cc69 status: 200 OK code: 200 - duration: 72.129625ms + duration: 55.356618ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -962,20 +962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 889 + content_length: 984 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":70,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag"],"timeout":"300s","updated_at":"2025-05-27T17:51:26.153250Z"}' headers: Content-Length: - - "889" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:47 GMT + - Tue, 27 May 2025 17:51:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12c38835-bfdd-4dde-a682-baa47b6fd8bb + - 2699797f-2eba-49ea-9616-1edd4fa4630a status: 200 OK code: 200 - duration: 61.252583ms + duration: 52.886214ms - id: 20 request: proto: HTTP/1.1 @@ -1002,8 +1002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -1011,20 +1011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:47 GMT + - Tue, 27 May 2025 17:51:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ef4fae8-6c07-48ee-8892-cc8d6c2c5147 + - de096b9d-b75f-4820-87c1-c031f51a4137 status: 200 OK code: 200 - duration: 45.526667ms + duration: 50.380787ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1060,20 +1060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 889 + content_length: 984 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":70,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag"],"timeout":"300s","updated_at":"2025-05-27T17:51:26.153250Z"}' headers: Content-Length: - - "889" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:47 GMT + - Tue, 27 May 2025 17:51:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 774f4d3f-4770-45aa-ab77-2ae5499dc2c0 + - 380a4224-b1d6-48c0-8e91-6c1ded049a03 status: 200 OK code: 200 - duration: 54.0425ms + duration: 51.296536ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -1109,20 +1109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:48 GMT + - Tue, 27 May 2025 17:51:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8570f388-685b-4333-80b1-b9671169c5d4 + - c3705636-8f77-43d7-a017-c1cd0bb06572 status: 200 OK code: 200 - duration: 44.102042ms + duration: 45.247534ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1158,20 +1158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 889 + content_length: 984 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":70,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1000,"max_concurrency":50,"max_scale":20,"memory_limit":128,"min_scale":0,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":8080,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":50},"secret_environment_variables":[],"status":"created","tags":["tag"],"timeout":"300s","updated_at":"2025-05-27T17:51:26.153250Z"}' headers: Content-Length: - - "889" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:48 GMT + - Tue, 27 May 2025 17:51:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,29 +1179,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 044ccb9e-9a77-4c55-bdaf-1ab4b15a5ad5 + - 18ce594a-dea3-4c57-a3af-29b5a05adf50 status: 200 OK code: 200 - duration: 55.641541ms + duration: 53.318236ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 283 + content_length: 293 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","local_storage_limit":1500}' + 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,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: PATCH response: proto: HTTP/2.0 @@ -1209,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 893 + content_length: 983 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:28.815956511Z"}' headers: Content-Length: - - "893" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:48 GMT + - Tue, 27 May 2025 17:51:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8268233-4098-4743-9e4f-ba630f552415 + - 4b1e9758-e3f1-403c-8ff2-4106f7a01ca7 status: 200 OK code: 200 - duration: 93.3135ms + duration: 126.169095ms - id: 25 request: proto: HTTP/1.1 @@ -1249,8 +1249,8 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1258,20 +1258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 890 + content_length: 980 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:28.815957Z"}' headers: Content-Length: - - "890" + - "980" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:48 GMT + - Tue, 27 May 2025 17:51:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,10 +1279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caeaa084-d9e3-4584-a562-5a42ba13c005 + - 2edadb43-48df-4f69-8e2e-74f18a7f919a status: 200 OK code: 200 - duration: 54.837459ms + duration: 59.581173ms - id: 26 request: proto: HTTP/1.1 @@ -1298,8 +1298,8 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1307,20 +1307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 890 + content_length: 980 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"pending","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:28.815957Z"}' headers: Content-Length: - - "890" + - "980" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:53 GMT + - Tue, 27 May 2025 17:51:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,10 +1328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f50324af-27e5-4fa3-bc8e-712000dc2fa0 + - 9c10b07b-8a3e-4fb7-b5a6-17a675ec6ddf status: 200 OK code: 200 - duration: 71.350708ms + duration: 63.182755ms - id: 27 request: proto: HTTP/1.1 @@ -1347,8 +1347,8 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1356,20 +1356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 928 + content_length: 1018 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:35.375237Z"}' headers: Content-Length: - - "928" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:58 GMT + - Tue, 27 May 2025 17:51:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 488eb1eb-d890-4fdc-9194-ab5ac4fa5d8e + - 79f3cada-1039-461d-b824-4c175643b039 status: 200 OK code: 200 - duration: 63.753625ms + duration: 59.194558ms - id: 28 request: proto: HTTP/1.1 @@ -1396,8 +1396,8 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1405,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 928 + content_length: 1018 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:35.375237Z"}' headers: Content-Length: - - "928" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:58 GMT + - Tue, 27 May 2025 17:51:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,10 +1426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cd25453-881b-4c8a-9787-278be31c0329 + - 4fb6ea86-04be-4ab3-afb8-12c289df0409 status: 200 OK code: 200 - duration: 66.92575ms + duration: 79.962693ms - id: 29 request: proto: HTTP/1.1 @@ -1445,8 +1445,8 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1454,20 +1454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 928 + content_length: 1018 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:35.375237Z"}' headers: Content-Length: - - "928" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:58 GMT + - Tue, 27 May 2025 17:51:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9a900a6-0fd8-4a29-9d86-212f70e6388d + - a8f22849-c54c-41ea-b2cd-de8c0732c800 status: 200 OK code: 200 - duration: 62.253167ms + duration: 93.325199ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -1503,20 +1503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:58 GMT + - Tue, 27 May 2025 17:51:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0aab5140-c0e4-43c9-8f4b-32675f0d17ca + - 155ec8f7-858a-4641-8f65-f861e68adf0b status: 200 OK code: 200 - duration: 44.311083ms + duration: 49.100602ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1552,20 +1552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 928 + content_length: 1018 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:35.375237Z"}' headers: Content-Length: - - "928" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:59 GMT + - Tue, 27 May 2025 17:51:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,10 +1573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 991a52b2-2438-45ea-bc26-014661be7211 + - ac741dd5-a1ad-431f-adc8-2038bf9dd90e status: 200 OK code: 200 - duration: 74.312916ms + duration: 61.668977ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: GET response: proto: HTTP/2.0 @@ -1601,20 +1601,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 928 + content_length: 1018 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:35.375237Z"}' headers: Content-Length: - - "928" + - "1018" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:59 GMT + - Tue, 27 May 2025 17:51:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,10 +1622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d4cf6e5-aea9-4880-a1ff-3a8b82d9d95b + - cd766853-dd69-4dc4-9236-fe3a5cb3f2a2 status: 200 OK code: 200 - duration: 48.684125ms + duration: 56.902255ms - id: 33 request: proto: HTTP/1.1 @@ -1641,8 +1641,8 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/897883bf-35cc-4583-b1c6-ff513fa8163e method: DELETE response: proto: HTTP/2.0 @@ -1650,20 +1650,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 894 + content_length: 984 uncompressed: false - 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"}' + body: '{"args":[],"command":[],"cpu_limit":280,"created_at":"2025-05-27T17:51:26.153250Z","description":"","domain_name":"tfnsdazzlinggagarinporaatc0-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":"897883bf-35cc-4583-b1c6-ff513fa8163e","local_storage_limit":1500,"max_concurrency":80,"max_scale":2,"memory_limit":1120,"min_scale":1,"name":"my-container-tf","namespace_id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","port":5000,"privacy":"public","private_network_id":null,"protocol":"http1","ready_at":null,"region":"fr-par","registry_image":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0/my-container-tf:latest","sandbox":"v2","scaling_option":{"concurrent_requests_threshold":80},"secret_environment_variables":[],"status":"deleting","tags":[],"timeout":"300s","updated_at":"2025-05-27T17:51:41.760433664Z"}' headers: Content-Length: - - "894" + - "984" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:59 GMT + - Tue, 27 May 2025 17:51:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,10 +1671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cddce18-0d97-4f7e-a5bc-53ce4d9c58f2 + - 7d7f4add-e81a-45fe-a578-6bdc27670085 status: 200 OK code: 200 - duration: 165.586167ms + duration: 254.452162ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -1699,20 +1699,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 605 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T17:51:17.789213Z","vpc_integration_activated":false}' headers: Content-Length: - - "561" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:59 GMT + - Tue, 27 May 2025 17:51:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,10 +1720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26f146bf-766b-4ddb-a7a0-d9cb945754ed + - a1979290-b6c8-44a6-880e-3a1df2997acd status: 200 OK code: 200 - duration: 45.718917ms + duration: 49.92931ms - id: 35 request: proto: HTTP/1.1 @@ -1739,8 +1739,8 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: DELETE response: proto: HTTP/2.0 @@ -1748,20 +1748,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 567 + content_length: 611 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T17:51:42.003148501Z","vpc_integration_activated":false}' headers: Content-Length: - - "567" + - "611" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:59 GMT + - Tue, 27 May 2025 17:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,10 +1769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9098487a-99c7-45d0-871a-9c8e5bce9e8e + - 173eee6a-94d0-4fea-a223-5b38933acbdc status: 200 OK code: 200 - duration: 178.310583ms + duration: 183.004616ms - 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.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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -1797,20 +1797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 564 + content_length: 608 uncompressed: false - 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"}' + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T17:51:42.003149Z","vpc_integration_activated":false}' headers: Content-Length: - - "564" + - "608" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:46:59 GMT + - Tue, 27 May 2025 17:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1818,10 +1818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94d0bfca-15a4-4da9-b617-7f2b3e046654 + - cf9c6828-1c38-474f-9439-e5821809ad16 status: 200 OK code: 200 - duration: 51.907833ms + duration: 54.728022ms - id: 37 request: proto: HTTP/1.1 @@ -1837,8 +1837,253 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 608 + uncompressed: false + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T17:51:42.003149Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "608" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 27 May 2025 17:51:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2d386e6-8982-494f-9326-35aaa1ef464d + status: 200 OK + code: 200 + duration: 50.672338ms + - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 608 + uncompressed: false + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T17:51:42.003149Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "608" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 27 May 2025 17:51:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec22b6fd-ad46-4623-bd1f-304023f05379 + status: 200 OK + code: 200 + duration: 50.451959ms + - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 608 + uncompressed: false + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T17:51:42.003149Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "608" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 27 May 2025 17:51:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a78f6c82-3468-4f47-815f-a60abbb0cd38 + status: 200 OK + code: 200 + duration: 49.174279ms + - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 608 + uncompressed: false + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T17:51:42.003149Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "608" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 27 May 2025 17:52:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 354535f1-b93b-4544-b6a5-e5257ace73a3 + status: 200 OK + code: 200 + duration: 49.589158ms + - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 608 + uncompressed: false + body: '{"created_at":"2025-05-27T17:51:15.981350Z","description":"","environment_variables":{},"error_message":null,"id":"f4723ef3-baa7-4279-822f-4a90aad58cd2","name":"tf-ns-dazzling-gagarin","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtfnsdazzlinggagarinporaatc0","registry_namespace_id":"5986a8dc-c0fe-415b-8374-54eed6a212c1","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T17:51:42.003149Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "608" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 27 May 2025 17:52:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b77ae7cf-de2d-4977-8d3f-5dc0ca0dc544 + status: 200 OK + code: 200 + duration: 49.028839ms + - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: GET response: proto: HTTP/2.0 @@ -1857,9 +2102,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:47:04 GMT + - Tue, 27 May 2025 17:52:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1867,11 +2112,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 463ba5ce-ce90-46a9-aa41-8ee07cf35ec5 + - 8aeee4ce-db08-4820-b031-1b68e1fef79f status: 404 Not Found code: 404 - duration: 25.864916ms - - id: 38 + duration: 27.364452ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1886,8 +2131,8 @@ interactions: form: {} headers: User-Agent: - - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/f4723ef3-baa7-4279-822f-4a90aad58cd2 method: DELETE response: proto: HTTP/2.0 @@ -1906,9 +2151,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Mar 2025 12:47:05 GMT + - Tue, 27 May 2025 17:52:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1916,7 +2161,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82c6ab42-f381-4ddd-87b2-504b48b86f9f + - 66138291-49e4-452e-9140-8eb5129e5b13 status: 404 Not Found code: 404 - duration: 29.114958ms + duration: 35.218641ms diff --git a/internal/services/function/function.go b/internal/services/function/function.go index 2c1260b08b..747a516407 100644 --- a/internal/services/function/function.go +++ b/internal/services/function/function.go @@ -58,6 +58,14 @@ func ResourceFunction() *schema.Resource { Optional: true, Description: "The description of the function", }, + "tags": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Optional: true, + Description: "List of tags [\"tag1\", \"tag2\", ...] attached to the function.", + }, "environment_variables": { Type: schema.TypeMap, Optional: true, @@ -198,6 +206,10 @@ func ResourceFunctionCreate(ctx context.Context, d *schema.ResourceData, m inter Sandbox: function.FunctionSandbox(d.Get("sandbox").(string)), } + if tags, ok := d.GetOk("tags"); ok { + req.Tags = types.ExpandStrings(tags) + } + if timeout, ok := d.GetOk("timeout"); ok { req.Timeout = &scw.Duration{Seconds: int64(timeout.(int))} } @@ -310,6 +322,7 @@ func ResourceFunctionRead(ctx context.Context, d *schema.ResourceData, m interfa _ = d.Set("namespace_id", f.NamespaceID) _ = d.Set("sandbox", f.Sandbox) _ = d.Set("secret_environment_variables", flattenFunctionSecrets(f.SecretEnvironmentVariables)) + _ = d.Set("tags", types.FlattenSliceString(f.Tags)) return diags } @@ -353,6 +366,10 @@ func ResourceFunctionUpdate(ctx context.Context, d *schema.ResourceData, m inter updated = true } + if d.HasChange("tags") { + req.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) + } + if d.HasChange("memory_limit") { req.MemoryLimit = types.ExpandUint32Ptr(d.Get("memory_limit")) updated = true diff --git a/internal/services/function/function_test.go b/internal/services/function/function_test.go index ee868a157d..d348cf4c49 100644 --- a/internal/services/function/function_test.go +++ b/internal/services/function/function_test.go @@ -33,6 +33,7 @@ func TestAccFunction_Basic(t *testing.T) { runtime = "node22" privacy = "private" handler = "handler.handle" + tags = ["tag1", "tag2"] } `, Check: resource.ComposeTestCheckFunc( @@ -43,6 +44,9 @@ func TestAccFunction_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_function.main", "handler", "handler.handle"), resource.TestCheckResourceAttrSet("scaleway_function.main", "namespace_id"), resource.TestCheckResourceAttrSet("scaleway_function.main", "region"), + resource.TestCheckResourceAttr("scaleway_function.main", "tags.#", "2"), + resource.TestCheckResourceAttr("scaleway_function.main", "tags.0", "tag1"), + resource.TestCheckResourceAttr("scaleway_function.main", "tags.1", "tag2"), ), }, }, diff --git a/internal/services/function/testdata/function-basic.cassette.yaml b/internal/services/function/testdata/function-basic.cassette.yaml index 48ad75448e..415976a949 100644 --- a/internal/services/function/testdata/function-basic.cassette.yaml +++ b/internal/services/function/testdata/function-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-func-happy-mirzakhani","environment_variables":{},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","secret_environment_variables":[],"tags":null}' + body: '{"name":"tf-func-vibrant-dijkstra","environment_variables":{},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 490 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554889630Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:07.554889630Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563437566Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-05-27T18:18:38.563437566Z"}' headers: Content-Length: - - "476" + - "490" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:07 GMT + - Tue, 27 May 2025 18:18:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea4ac8f0-7c8c-4285-a35e-cec53a26ff3f + - 6dd2fa6a-5e03-4158-ace2-9b4042090043 status: 200 OK code: 200 - duration: 794.076625ms + duration: 498.885318ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 470 + content_length: 484 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:07.554890Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-05-27T18:18:38.563438Z"}' headers: Content-Length: - - "470" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:07 GMT + - Tue, 27 May 2025 18:18:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 253cf58a-d60b-4681-a61b-1563b04878a7 + - b8c6d043-c176-4317-a60e-eceb753a2202 status: 200 OK code: 200 - duration: 91.386125ms + duration: 51.660956ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 561 + content_length: 573 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-01-24T15:44:12.626936Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T18:18:41.005092Z"}' headers: Content-Length: - - "561" + - "573" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:12 GMT + - Tue, 27 May 2025 18:18:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43c00dd5-71c8-4611-8144-86c11ed80bae + - 4aa848e6-43ec-46b3-bfeb-0c71d3065e82 status: 200 OK code: 200 - duration: 73.827291ms + duration: 57.112806ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 573 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.863269Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T18:18:41.005092Z"}' headers: Content-Length: - - "559" + - "573" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:17 GMT + - Tue, 27 May 2025 18:18:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,48 +195,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96bf844e-ea24-488a-83fa-9aa42c7c3faf + - 01a4e461-ca88-4287-bffe-60b7025c7899 status: 200 OK code: 200 - duration: 69.069125ms + duration: 43.712452ms - id: 4 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: '{"name":"foobar","namespace_id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"node22","memory_limit":256,"handler":"handler.handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"unknown_sandbox","tags":["tag1","tag2"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 719 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.863269Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-05-27T18:18:44.010304019Z","description":"","domain_name":"tffuncvibrantdijkstrgofatooh-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"0cfe1223-c337-4271-96a9-5386f206e0ba","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T18:18:44.010304019Z"}' headers: Content-Length: - - "559" + - "719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:17 GMT + - Tue, 27 May 2025 18:18:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,50 +246,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f38d53b9-aa89-4776-99a5-38c4687d4cca + - 38e27e74-5948-4e0a-a9dd-e5fc877232da status: 200 OK code: 200 - duration: 66.0625ms + duration: 289.860437ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 298 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"foobar","namespace_id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"node22","memory_limit":256,"handler":"handler.handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"unknown_sandbox"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0cfe1223-c337-4271-96a9-5386f206e0ba + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 670 + content_length: 713 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:44:18.093915728Z","description":"","domain_name":"tffunchappymirzakhanh5jlsa67-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"40b42a92-d2c5-43aa-bb50-f1754afe2b59","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:44:18.093915728Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-05-27T18:18:44.010304Z","description":"","domain_name":"tffuncvibrantdijkstrgofatooh-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"0cfe1223-c337-4271-96a9-5386f206e0ba","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T18:18:44.010304Z"}' headers: Content-Length: - - "670" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Tue, 27 May 2025 18:18:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c9df4a0-4161-48a0-a7aa-3e1ce15c62ae + - 21f36981-04a4-4c66-aa0b-3c833a3a4d6e status: 200 OK code: 200 - duration: 227.543833ms + duration: 56.372939ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/40b42a92-d2c5-43aa-bb50-f1754afe2b59 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0cfe1223-c337-4271-96a9-5386f206e0ba method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 664 + content_length: 713 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:44:18.093916Z","description":"","domain_name":"tffunchappymirzakhanh5jlsa67-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"40b42a92-d2c5-43aa-bb50-f1754afe2b59","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:44:18.093916Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-05-27T18:18:44.010304Z","description":"","domain_name":"tffuncvibrantdijkstrgofatooh-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"0cfe1223-c337-4271-96a9-5386f206e0ba","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T18:18:44.010304Z"}' headers: Content-Length: - - "664" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Tue, 27 May 2025 18:18:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b7659e0-0d5f-4d26-9a5e-a2934348163b + - 4d090b03-219a-4995-8062-2b26735abe81 status: 200 OK code: 200 - duration: 74.02975ms + duration: 62.313574ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/40b42a92-d2c5-43aa-bb50-f1754afe2b59 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0cfe1223-c337-4271-96a9-5386f206e0ba method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 664 + content_length: 713 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:44:18.093916Z","description":"","domain_name":"tffunchappymirzakhanh5jlsa67-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"40b42a92-d2c5-43aa-bb50-f1754afe2b59","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:44:18.093916Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-05-27T18:18:44.010304Z","description":"","domain_name":"tffuncvibrantdijkstrgofatooh-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"0cfe1223-c337-4271-96a9-5386f206e0ba","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T18:18:44.010304Z"}' headers: Content-Length: - - "664" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Tue, 27 May 2025 18:18:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c577b20-a588-4c02-a8df-a1b928f31914 + - 438f3753-3d7f-4248-8470-f52ad28c3d70 status: 200 OK code: 200 - duration: 95.996208ms + duration: 65.138938ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/40b42a92-d2c5-43aa-bb50-f1754afe2b59 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 664 + content_length: 573 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:44:18.093916Z","description":"","domain_name":"tffunchappymirzakhanh5jlsa67-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"40b42a92-d2c5-43aa-bb50-f1754afe2b59","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:44:18.093916Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T18:18:41.005092Z"}' headers: Content-Length: - - "664" + - "573" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:18 GMT + - Tue, 27 May 2025 18:18:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36460ca7-95ba-4c79-bcbf-64410fe797c4 + - 7745372c-c3a5-48b6-97a8-3afaf13912b8 status: 200 OK code: 200 - duration: 77.499833ms + duration: 50.039255ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0cfe1223-c337-4271-96a9-5386f206e0ba method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 713 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.863269Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-05-27T18:18:44.010304Z","description":"","domain_name":"tffuncvibrantdijkstrgofatooh-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"0cfe1223-c337-4271-96a9-5386f206e0ba","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T18:18:44.010304Z"}' headers: Content-Length: - - "559" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Tue, 27 May 2025 18:18:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d4a9f8c-6609-4db6-9931-99a608f4cb93 + - a948e6ec-fdd3-4ee6-812c-fa36b99c39e7 status: 200 OK code: 200 - duration: 71.360667ms + duration: 66.91538ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/40b42a92-d2c5-43aa-bb50-f1754afe2b59 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0cfe1223-c337-4271-96a9-5386f206e0ba method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 664 + content_length: 713 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:44:18.093916Z","description":"","domain_name":"tffunchappymirzakhanh5jlsa67-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"40b42a92-d2c5-43aa-bb50-f1754afe2b59","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:44:18.093916Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-05-27T18:18:44.010304Z","description":"","domain_name":"tffuncvibrantdijkstrgofatooh-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"0cfe1223-c337-4271-96a9-5386f206e0ba","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T18:18:44.010304Z"}' headers: Content-Length: - - "664" + - "713" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:19 GMT + - Tue, 27 May 2025 18:18:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74b1b4e0-3130-48d5-870a-a65baabdd91b + - cde2e8ed-5724-4add-b541-6432bac777e1 status: 200 OK code: 200 - duration: 80.053458ms + duration: 62.06188ms - id: 11 request: proto: HTTP/1.1 @@ -559,29 +559,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/40b42a92-d2c5-43aa-bb50-f1754afe2b59 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0cfe1223-c337-4271-96a9-5386f206e0ba + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 664 + content_length: 717 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:44:18.093916Z","description":"","domain_name":"tffunchappymirzakhanh5jlsa67-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"40b42a92-d2c5-43aa-bb50-f1754afe2b59","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"created","timeout":"300s","updated_at":"2025-01-24T15:44:18.093916Z"}' + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-05-27T18:18:44.010304Z","description":"","domain_name":"tffuncvibrantdijkstrgofatooh-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"0cfe1223-c337-4271-96a9-5386f206e0ba","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"deleting","tags":["tag1","tag2"],"timeout":"300s","updated_at":"2025-05-27T18:18:47.101834685Z"}' headers: Content-Length: - - "664" + - "717" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:20 GMT + - Tue, 27 May 2025 18:18:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0da07b2c-e8da-4d39-91ff-c92e8fe1532b + - fb52e846-0aa3-4a63-b9a5-8317199896b8 status: 200 OK code: 200 - duration: 82.487833ms + duration: 126.531198ms - id: 12 request: proto: HTTP/1.1 @@ -608,29 +608,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/40b42a92-d2c5-43aa-bb50-f1754afe2b59 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 668 + content_length: 573 uncompressed: false - body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-01-24T15:44:18.093916Z","description":"","domain_name":"tffunchappymirzakhanh5jlsa67-foobar.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"handler.handle","http_option":"enabled","id":"40b42a92-d2c5-43aa-bb50-f1754afe2b59","max_scale":20,"memory_limit":256,"min_scale":0,"name":"foobar","namespace_id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","privacy":"private","ready_at":null,"region":"fr-par","runtime":"node22","runtime_message":"","sandbox":"v2","secret_environment_variables":[],"status":"deleting","timeout":"300s","updated_at":"2025-01-24T15:44:20.464020925Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-05-27T18:18:41.005092Z"}' headers: Content-Length: - - "668" + - "573" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:20 GMT + - Tue, 27 May 2025 18:18:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a95c8637-2883-4223-9c46-efd3929387db + - ad0570c9-cb03-4cf4-abb8-70fd7bac932a status: 200 OK code: 200 - duration: 148.635208ms + duration: 42.911382ms - 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/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 559 + content_length: 579 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-01-24T15:44:12.863269Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T18:18:47.261932288Z"}' headers: Content-Length: - - "559" + - "579" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:20 GMT + - Tue, 27 May 2025 18:18:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7dfc09f-7b64-425d-a5d0-56c09b2656e5 + - 8c9786ef-002f-4567-8c4d-7106506c2cdc status: 200 OK code: 200 - duration: 72.99475ms + duration: 223.47639ms - id: 14 request: proto: HTTP/1.1 @@ -706,29 +706,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 565 + content_length: 576 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.671544424Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T18:18:47.261932Z"}' headers: Content-Length: - - "565" + - "576" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:20 GMT + - Tue, 27 May 2025 18:18:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b54c8ce-b9c4-4eb5-8be2-b9200962e5d2 + - be2ae9bf-1ab0-453f-8d2f-5555659beed4 status: 200 OK code: 200 - duration: 250.371334ms + duration: 51.390267ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 562 + content_length: 576 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.671544Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T18:18:47.261932Z"}' headers: Content-Length: - - "562" + - "576" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:20 GMT + - Tue, 27 May 2025 18:18:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e2846f5-aea4-434b-98c3-6bf119d85ab1 + - dadd6f5b-a668-49c7-af90-c60c0458a13c status: 200 OK code: 200 - duration: 77.589791ms + duration: 172.313359ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 562 + content_length: 576 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.671544Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T18:18:47.261932Z"}' headers: Content-Length: - - "562" + - "576" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:25 GMT + - Tue, 27 May 2025 18:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 792a0c86-6b44-47de-b872-7227272467f3 + - 6bee5b05-00bb-4193-9260-02961e0d13bd status: 200 OK code: 200 - duration: 64.340708ms + duration: 54.285593ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -862,20 +862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 562 + content_length: 576 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.671544Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T18:18:47.261932Z"}' headers: Content-Length: - - "562" + - "576" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:31 GMT + - Tue, 27 May 2025 18:19:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,10 +883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea1c9666-3d76-492b-a17a-cae2a230eb9d + - b5432e04-dee0-4ea6-9b62-edfa478366a6 status: 200 OK code: 200 - duration: 63.482666ms + duration: 90.024845ms - id: 18 request: proto: HTTP/1.1 @@ -902,8 +902,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -911,20 +911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 562 + content_length: 576 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.671544Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T18:18:47.261932Z"}' headers: Content-Length: - - "562" + - "576" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:36 GMT + - Tue, 27 May 2025 18:19:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,10 +932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b636206-b5f5-412a-9523-626c0a267f91 + - 0b0341ba-5998-4d86-8f7f-efd63cc2c4b2 status: 200 OK code: 200 - duration: 68.923459ms + duration: 47.097888ms - id: 19 request: proto: HTTP/1.1 @@ -951,8 +951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -960,20 +960,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 562 + content_length: 576 uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.671544Z"}' + body: '{"created_at":"2025-05-27T18:18:38.563438Z","description":"","environment_variables":{},"error_message":null,"id":"7022bdf8-596f-4a9f-9248-bf63dc19ce0f","name":"tf-func-vibrant-dijkstra","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncvibrantdijkstrgofatooh","registry_namespace_id":"bc07a5db-ad1f-4cf1-b57d-afb65d30fdc7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-05-27T18:18:47.261932Z"}' headers: Content-Length: - - "562" + - "576" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:41 GMT + - Tue, 27 May 2025 18:19:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,10 +981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab45be06-acc1-4a51-8265-befd8e678014 + - e34519dc-ce9a-4e15-8583-8a01835c7df0 status: 200 OK code: 200 - duration: 69.940584ms + duration: 41.415545ms - id: 20 request: proto: HTTP/1.1 @@ -1000,57 +1000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 562 - uncompressed: false - body: '{"created_at":"2025-01-24T15:44:07.554890Z","description":"","environment_variables":{},"error_message":null,"id":"2d7e4c24-c04b-4062-b15c-4b2ce794eea6","name":"tf-func-happy-mirzakhani","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunchappymirzakhanh5jlsa67","registry_namespace_id":"0e583770-2eaf-465e-a6fc-c0047f456ff4","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-01-24T15:44:20.671544Z"}' - headers: - Content-Length: - - "562" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 24 Jan 2025 15:44:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 07bf483f-1532-4077-bd33-38cc9ce4458e - status: 200 OK - code: 200 - duration: 64.504041ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/2d7e4c24-c04b-4062-b15c-4b2ce794eea6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/7022bdf8-596f-4a9f-9248-bf63dc19ce0f method: GET response: proto: HTTP/2.0 @@ -1069,9 +1020,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:51 GMT + - Tue, 27 May 2025 18:19:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,11 +1030,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90375a90-9324-492b-8a51-da4c86f54b85 + - ae6e262f-f765-4527-baeb-696c572c2a7d status: 404 Not Found code: 404 - duration: 20.360375ms - - id: 22 + duration: 32.006366ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1098,8 +1049,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/40b42a92-d2c5-43aa-bb50-f1754afe2b59 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0cfe1223-c337-4271-96a9-5386f206e0ba method: DELETE response: proto: HTTP/2.0 @@ -1118,9 +1069,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 15:44:51 GMT + - Tue, 27 May 2025 18:19:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1128,7 +1079,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ae44780-0524-44ec-ac34-3a92313a1f47 + - 20159565-2ae5-4b52-8686-de56d54b8f3c status: 404 Not Found code: 404 - duration: 24.994ms + duration: 23.42112ms