diff --git a/internal/services/container/container_test.go b/internal/services/container/container_test.go index e9c93cee4..86ccf2fcd 100644 --- a/internal/services/container/container_test.go +++ b/internal/services/container/container_test.go @@ -643,12 +643,8 @@ func TestAccContainer_PrivateNetwork(t *testing.T) { name = "TestAccContainer_PrivateNetwork" } - resource scaleway_vpc_private_network pn00 { - name = "test-acc-container-pn-pn00" - vpc_id = scaleway_vpc.main.id - } - resource scaleway_vpc_private_network pn01 { - name = "test-acc-container-pn-pn01" + resource scaleway_vpc_private_network start { + name = "test-acc-container-pn-start" vpc_id = scaleway_vpc.main.id } @@ -656,19 +652,19 @@ func TestAccContainer_PrivateNetwork(t *testing.T) { activate_vpc_integration = true } - resource scaleway_container c00 { - name = "test-acc-container-pn-c00" + resource scaleway_container to_stay { + name = "test-acc-container-pn-to-stay" namespace_id = scaleway_container_namespace.main.id - private_network_id = scaleway_vpc_private_network.pn00.id + private_network_id = scaleway_vpc_private_network.start.id sandbox = "v1" - tags = [ "c00" ] + tags = [ "to-stay" ] } `, Check: resource.ComposeTestCheckFunc( - isContainerPresent(tt, "scaleway_container.c00"), + isContainerPresent(tt, "scaleway_container.to_stay"), resource.TestCheckResourceAttr("scaleway_container_namespace.main", "activate_vpc_integration", "true"), - resource.TestCheckResourceAttr("scaleway_container.c00", "sandbox", "v1"), - resource.TestCheckResourceAttrPair("scaleway_container.c00", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), + resource.TestCheckResourceAttr("scaleway_container.to_stay", "sandbox", "v1"), + resource.TestCheckResourceAttrPair("scaleway_container.to_stay", "private_network_id", "scaleway_vpc_private_network.start", "id"), ), }, { @@ -677,12 +673,8 @@ func TestAccContainer_PrivateNetwork(t *testing.T) { name = "TestAccContainer_PrivateNetwork" } - resource scaleway_vpc_private_network pn00 { - name = "test-acc-container-pn-pn00" - vpc_id = scaleway_vpc.main.id - } - resource scaleway_vpc_private_network pn01 { - name = "test-acc-container-pn-pn01" + resource scaleway_vpc_private_network start { + name = "test-acc-container-pn-start" vpc_id = scaleway_vpc.main.id } @@ -690,40 +682,40 @@ func TestAccContainer_PrivateNetwork(t *testing.T) { activate_vpc_integration = true } - resource scaleway_container c00 { - name = "test-acc-container-pn-c00" + resource scaleway_container to_stay { + name = "test-acc-container-pn-to-stay" namespace_id = scaleway_container_namespace.main.id - private_network_id = scaleway_vpc_private_network.pn00.id + private_network_id = scaleway_vpc_private_network.start.id sandbox = "v1" - tags = [ "c00" ] + tags = [ "to-stay" ] } - resource scaleway_container c01 { - name = "test-acc-container-pn-c01" + resource scaleway_container to_change { + name = "test-acc-container-pn-to-change" namespace_id = scaleway_container_namespace.main.id - private_network_id = scaleway_vpc_private_network.pn00.id + private_network_id = scaleway_vpc_private_network.start.id sandbox = "v1" - tags = [ "c01" ] + tags = [ "to-change" ] } - resource scaleway_container c02 { - name = "test-acc-container-pn-c02" + resource scaleway_container to_remove { + name = "test-acc-container-pn-to-remove" namespace_id = scaleway_container_namespace.main.id - private_network_id = scaleway_vpc_private_network.pn00.id + private_network_id = scaleway_vpc_private_network.start.id sandbox = "v1" - tags = [ "c02" ] + tags = [ "to-remove" ] } `, Check: resource.ComposeTestCheckFunc( - isContainerPresent(tt, "scaleway_container.c00"), - isContainerPresent(tt, "scaleway_container.c01"), - isContainerPresent(tt, "scaleway_container.c02"), - resource.TestCheckResourceAttr("scaleway_container.c00", "sandbox", "v1"), - resource.TestCheckResourceAttr("scaleway_container.c01", "sandbox", "v1"), - resource.TestCheckResourceAttr("scaleway_container.c02", "sandbox", "v1"), - resource.TestCheckResourceAttrPair("scaleway_container.c00", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), - resource.TestCheckResourceAttrPair("scaleway_container.c01", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), - resource.TestCheckResourceAttrPair("scaleway_container.c02", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), + isContainerPresent(tt, "scaleway_container.to_stay"), + isContainerPresent(tt, "scaleway_container.to_change"), + isContainerPresent(tt, "scaleway_container.to_remove"), + resource.TestCheckResourceAttr("scaleway_container.to_stay", "sandbox", "v1"), + resource.TestCheckResourceAttr("scaleway_container.to_change", "sandbox", "v1"), + resource.TestCheckResourceAttr("scaleway_container.to_remove", "sandbox", "v1"), + resource.TestCheckResourceAttrPair("scaleway_container.to_stay", "private_network_id", "scaleway_vpc_private_network.start", "id"), + resource.TestCheckResourceAttrPair("scaleway_container.to_change", "private_network_id", "scaleway_vpc_private_network.start", "id"), + resource.TestCheckResourceAttrPair("scaleway_container.to_remove", "private_network_id", "scaleway_vpc_private_network.start", "id"), ), }, { @@ -732,13 +724,13 @@ func TestAccContainer_PrivateNetwork(t *testing.T) { name = "TestAccContainer_PrivateNetwork" } - resource scaleway_vpc_private_network pn00 { - name = "test-acc-container-pn-pn00" + resource scaleway_vpc_private_network start { + name = "test-acc-container-pn-start" vpc_id = scaleway_vpc.main.id } - resource scaleway_vpc_private_network pn01 { - name = "test-acc-container-pn-pn01" + resource scaleway_vpc_private_network new { + name = "test-acc-container-pn-new" vpc_id = scaleway_vpc.main.id } @@ -746,36 +738,36 @@ func TestAccContainer_PrivateNetwork(t *testing.T) { activate_vpc_integration = true } - resource scaleway_container c00 { - name = "test-acc-container-pn-c00" + resource scaleway_container to_stay { + name = "test-acc-container-pn-to-stay" namespace_id = scaleway_container_namespace.main.id + private_network_id = scaleway_vpc_private_network.start.id sandbox = "v1" - tags = [ "c00" ] + tags = [ "to-stay" ] } - resource scaleway_container c01 { - name = "test-acc-container-pn-c01" + resource scaleway_container to_change { + name = "test-acc-container-pn-to-change" namespace_id = scaleway_container_namespace.main.id - private_network_id = scaleway_vpc_private_network.pn01.id + private_network_id = scaleway_vpc_private_network.new.id sandbox = "v1" - tags = [ "c01" ] + tags = [ "to-change" ] } - resource scaleway_container c02 { - name = "test-acc-container-pn-c02" + resource scaleway_container to_remove { + name = "test-acc-container-pn-to-remove" namespace_id = scaleway_container_namespace.main.id - private_network_id = scaleway_vpc_private_network.pn00.id sandbox = "v1" - tags = [ "c02" ] + tags = [ "to-remove" ] } `, Check: resource.ComposeTestCheckFunc( - isContainerPresent(tt, "scaleway_container.c00"), - isContainerPresent(tt, "scaleway_container.c01"), - isContainerPresent(tt, "scaleway_container.c02"), - resource.TestCheckResourceAttr("scaleway_container.c00", "private_network_id", ""), - resource.TestCheckResourceAttrPair("scaleway_container.c01", "private_network_id", "scaleway_vpc_private_network.pn01", "id"), - resource.TestCheckResourceAttrPair("scaleway_container.c02", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), + isContainerPresent(tt, "scaleway_container.to_stay"), + isContainerPresent(tt, "scaleway_container.to_change"), + isContainerPresent(tt, "scaleway_container.to_remove"), + resource.TestCheckResourceAttrPair("scaleway_container.to_stay", "private_network_id", "scaleway_vpc_private_network.start", "id"), + resource.TestCheckResourceAttrPair("scaleway_container.to_change", "private_network_id", "scaleway_vpc_private_network.new", "id"), + resource.TestCheckResourceAttr("scaleway_container.to_remove", "private_network_id", ""), ), }, }, diff --git a/internal/services/container/testdata/container-http-option.cassette.yaml b/internal/services/container/testdata/container-http-option.cassette.yaml index b65913348..14166a55a 100644 --- a/internal/services/container/testdata/container-http-option.cassette.yaml +++ b/internal/services/container/testdata/container-http-option.cassette.yaml @@ -6,36 +6,36 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 189 + content_length: 190 host: api.scaleway.com - body: "{\"name\":\"tf-ns-gallant-satoshi\",\"environment_variables\":{},\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"secret_environment_variables\":[],\"tags\":null,\"activate_vpc_integration\":true}" + body: "{\"name\":\"tf-ns-hardcore-solomon\",\"environment_variables\":{},\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"secret_environment_variables\":[],\"tags\":null,\"activate_vpc_integration\":true}" headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 521 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"pending\", \"registry_namespace_id\":\"\", \"error_message\":null, \"registry_endpoint\":\"\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607375Z\", \"updated_at\":\"2025-10-31T16:31:05.092607375Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 522 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"pending\", \"registry_namespace_id\":\"\", \"error_message\":null, \"registry_endpoint\":\"\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451010775Z\", \"updated_at\":\"2025-11-06T08:41:17.451010775Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "521" + - "522" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:05 GMT + - Thu, 06 Nov 2025 08:41:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 465b1e76-c12d-4bd6-afa5-bd7528dff552 + - 22702477-682e-4cdb-8fb3-b22c1b14f284 status: 200 OK code: 200 - duration: 5.056985904s + duration: 1.697716875s - id: 1 request: proto: HTTP/1.1 @@ -45,29 +45,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 515 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"pending\", \"registry_namespace_id\":\"\", \"error_message\":null, \"registry_endpoint\":\"\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:05.092607Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 516 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"pending\", \"registry_namespace_id\":\"\", \"error_message\":null, \"registry_endpoint\":\"\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:17.451011Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "515" + - "516" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:05 GMT + - Thu, 06 Nov 2025 08:41:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 2b911d29-072f-4917-82bd-5a0cca73aa4d + - c14763ac-5f36-4dff-b8d6-5d69cfa2439d status: 200 OK code: 200 - duration: 96.831494ms + duration: 145.701ms - id: 2 request: proto: HTTP/1.1 @@ -77,29 +77,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:10 GMT + - Thu, 06 Nov 2025 08:41:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 228a9cf2-13fc-4f3b-96c1-995b51623572 + - f7d2df5d-eabf-4d22-8126-d0d52a6af4c3 status: 200 OK code: 200 - duration: 81.842236ms + duration: 112.386125ms - id: 3 request: proto: HTTP/1.1 @@ -109,29 +109,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:10 GMT + - Thu, 06 Nov 2025 08:41:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9abeed40-6da1-4448-9554-352fbaaa036f + - f69e37fa-777f-45ff-ae9e-45077f0d4bfd status: 200 OK code: 200 - duration: 73.898994ms + duration: 101.6775ms - id: 4 request: proto: HTTP/1.1 @@ -141,64 +141,64 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:10 GMT + - Thu, 06 Nov 2025 08:41:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 00ec3bea-23eb-479d-aa24-9733f7141efe + - e112c940-6897-4192-b567-bca69ec9b6c2 status: 200 OK code: 200 - duration: 140.625985ms + duration: 150.9345ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 251 + content_length: 260 host: api.scaleway.com - body: "{\"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\",\"name\":\"tf-co-reverent-diffie\",\"privacy\":\"public\",\"protocol\":\"http1\",\"secret_environment_variables\":null,\"http_option\":\"enabled\",\"sandbox\":\"unknown_sandbox\",\"tags\":null,\"command\":null,\"args\":null}" + body: "{\"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\",\"name\":\"tf-co-condescending-mirzakhani\",\"privacy\":\"public\",\"protocol\":\"http1\",\"secret_environment_variables\":null,\"http_option\":\"enabled\",\"sandbox\":\"unknown_sandbox\",\"tags\":null,\"command\":null,\"args\":null}" headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1003 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230837872Z\", \"updated_at\":\"2025-10-31T16:31:11.230837872Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1032 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052001Z\", \"updated_at\":\"2025-11-06T08:41:23.438052001Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1003" + - "1032" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:11 GMT + - Thu, 06 Nov 2025 08:41:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 8f5703c1-f881-4989-b7a0-51a565fbd62d + - 6b44fca9-4490-461c-9b55-bcbd883ddffa status: 200 OK code: 200 - duration: 769.674163ms + duration: 463.935958ms - id: 6 request: proto: HTTP/1.1 @@ -208,29 +208,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 997 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:11.230838Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1026 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:23.438052Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "997" + - "1026" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:11 GMT + - Thu, 06 Nov 2025 08:41:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c98a0e03-06e9-4cdd-9930-e5987f64bc5a + - 05705652-6590-44d4-8f9f-9b35103f08cb status: 200 OK code: 200 - duration: 89.864294ms + duration: 119.083292ms - id: 7 request: proto: HTTP/1.1 @@ -240,29 +240,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 997 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:11.230838Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1026 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:23.438052Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "997" + - "1026" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:11 GMT + - Thu, 06 Nov 2025 08:41:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9a902317-1e2f-45ea-99de-92d87b0e503d + - 123954ab-808f-4d2e-b743-ca101a9079f2 status: 200 OK code: 200 - duration: 103.845826ms + duration: 133.159ms - id: 8 request: proto: HTTP/1.1 @@ -272,29 +272,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:11 GMT + - Thu, 06 Nov 2025 08:41:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 5f9dd6b9-e560-455d-b60b-1a1884a2cfa1 + - 81ed0295-218b-452f-8890-bb11bfab695e status: 200 OK code: 200 - duration: 77.305837ms + duration: 107.413417ms - id: 9 request: proto: HTTP/1.1 @@ -304,29 +304,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 997 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:11.230838Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1026 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:23.438052Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "997" + - "1026" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:11 GMT + - Thu, 06 Nov 2025 08:41:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7c833b28-0b88-497d-b2c4-33aa918b850b + - 0b211035-7f2a-420e-9863-2dc7283660ec status: 200 OK code: 200 - duration: 101.530734ms + duration: 124.263417ms - id: 10 request: proto: HTTP/1.1 @@ -336,29 +336,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:12 GMT + - Thu, 06 Nov 2025 08:41:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 54bbd0dd-9a08-438a-97e4-55f2d693615b + - 46f5788b-0bbe-4336-bbb2-35861b317646 status: 200 OK code: 200 - duration: 79.152058ms + duration: 96.289125ms - id: 11 request: proto: HTTP/1.1 @@ -368,29 +368,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 997 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:11.230838Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1026 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:23.438052Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "997" + - "1026" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:12 GMT + - Thu, 06 Nov 2025 08:41:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 683e7221-0f94-4a8e-a160-f76390cc4982 + - 5f493c91-bd05-4880-839d-73dca7df62f3 status: 200 OK code: 200 - duration: 98.310771ms + duration: 111.516334ms - id: 12 request: proto: HTTP/1.1 @@ -400,29 +400,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:12 GMT + - Thu, 06 Nov 2025 08:41:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 331779c9-a1f4-4a2b-ad3e-8dc4d9e8219a + - 8f0bf4f9-2ff1-4e37-98c7-dc1a2454e848 status: 200 OK code: 200 - duration: 114.016664ms + duration: 99.941958ms - id: 13 request: proto: HTTP/1.1 @@ -432,29 +432,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 997 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:11.230838Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1026 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:23.438052Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "997" + - "1026" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:12 GMT + - Thu, 06 Nov 2025 08:41:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 236d8dff-a127-454c-9f32-6a93bc8a1f15 + - aef8a59b-ed9d-4155-b707-8d6472e248e6 status: 200 OK code: 200 - duration: 107.322962ms + duration: 208.274458ms - id: 14 request: proto: HTTP/1.1 @@ -467,29 +467,29 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1003 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:12.732802895Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1032 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:28.267594636Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1003" + - "1032" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:12 GMT + - Thu, 06 Nov 2025 08:41:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 96f4fa30-7738-4c1b-b36f-02fe6d812550 + - 37037830-3dc9-4570-a706-fb50021fbbd4 status: 200 OK code: 200 - duration: 167.552809ms + duration: 111.819542ms - id: 15 request: proto: HTTP/1.1 @@ -499,29 +499,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1000 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:12.732803Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1029 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:28.267595Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1000" + - "1029" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:12 GMT + - Thu, 06 Nov 2025 08:41:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 49803e79-64a7-49e6-8435-0eb2d8d19b65 + - df9c97e6-4e14-45fd-99f2-7744ce1da70d status: 200 OK code: 200 - duration: 100.190996ms + duration: 116.720042ms - id: 16 request: proto: HTTP/1.1 @@ -531,29 +531,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1038 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:19.056663Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1067 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:34.836283Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1038" + - "1067" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:23 GMT + - Thu, 06 Nov 2025 08:41:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 46000df1-89d5-49b8-9745-c22a936abc0e + - 43be705b-4d81-4642-be4f-0a2257571060 status: 200 OK code: 200 - duration: 101.355178ms + duration: 104.824833ms - id: 17 request: proto: HTTP/1.1 @@ -563,29 +563,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1038 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:19.056663Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1067 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:34.836283Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1038" + - "1067" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:23 GMT + - Thu, 06 Nov 2025 08:41:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 2a5c5d54-c661-43d4-abe9-afb1395ce94e + - 32dd76d4-0084-42e9-801a-f65289125cc1 status: 200 OK code: 200 - duration: 119.272727ms + duration: 107.444541ms - id: 18 request: proto: HTTP/1.1 @@ -595,29 +595,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1038 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:19.056663Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1067 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:34.836283Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1038" + - "1067" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:23 GMT + - Thu, 06 Nov 2025 08:41:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - e8268cce-6c50-43c2-b60d-dc9954a47174 + - bc3e1556-d3c6-4927-88b0-38e1b008645c status: 200 OK code: 200 - duration: 104.25074ms + duration: 125.572917ms - id: 19 request: proto: HTTP/1.1 @@ -627,29 +627,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:23 GMT + - Thu, 06 Nov 2025 08:41:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4d92ed9a-bbaa-4a26-8bba-bbf86a9b96e7 + - fb834008-c035-4c0c-bf9f-1ab10cc65e91 status: 200 OK code: 200 - duration: 88.324223ms + duration: 122.069416ms - id: 20 request: proto: HTTP/1.1 @@ -659,29 +659,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1038 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:19.056663Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1067 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:34.836283Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1038" + - "1067" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:23 GMT + - Thu, 06 Nov 2025 08:41:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6664dbc2-f25c-43f8-832f-8f7babbec6e1 + - 4c472be0-3885-4e2c-bebf-85fcdffe715a status: 200 OK code: 200 - duration: 98.562509ms + duration: 190.858584ms - id: 21 request: proto: HTTP/1.1 @@ -691,29 +691,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:23 GMT + - Thu, 06 Nov 2025 08:41:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a125db2a-c87a-4f2f-8509-d1b138f1a344 + - 870382e5-ed8e-4b5f-aed0-83aa7bd55a79 status: 200 OK code: 200 - duration: 101.205727ms + duration: 165.029625ms - id: 22 request: proto: HTTP/1.1 @@ -723,29 +723,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1038 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:19.056663Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1067 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:34.836283Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1038" + - "1067" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:24 GMT + - Thu, 06 Nov 2025 08:41:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - b6dc1901-525f-4ab8-a6b4-901da23cdead + - 9177a883-b979-433f-bc32-6af352390263 status: 200 OK code: 200 - duration: 88.587548ms + duration: 119.561875ms - id: 23 request: proto: HTTP/1.1 @@ -755,29 +755,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:24 GMT + - Thu, 06 Nov 2025 08:41:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c3ec5212-23ca-4526-8d16-05860e6f27c3 + - 5d834638-0197-4ad6-839e-40424c31c9b2 status: 200 OK code: 200 - duration: 83.498792ms + duration: 100.583333ms - id: 24 request: proto: HTTP/1.1 @@ -787,29 +787,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1038 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:19.056663Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1067 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"redirected\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:34.836283Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1038" + - "1067" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:24 GMT + - Thu, 06 Nov 2025 08:41:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6500fad6-132a-4d28-8aae-75f56588f616 + - 56cec9df-bcce-4690-814c-3a97644f32d7 status: 200 OK code: 200 - duration: 90.058232ms + duration: 427.429959ms - id: 25 request: proto: HTTP/1.1 @@ -822,29 +822,29 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1000 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:24.497977204Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1029 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:42.081499349Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1000" + - "1029" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:24 GMT + - Thu, 06 Nov 2025 08:41:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3d783f4c-8a56-42c8-849b-b04ab094bc83 + - a9c5e81e-e8a9-40f2-9559-b90a8da0519e status: 200 OK code: 200 - duration: 132.92048ms + duration: 159.707ms - id: 26 request: proto: HTTP/1.1 @@ -854,29 +854,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 997 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:24.497977Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1026 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:42.081499Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "997" + - "1026" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:24 GMT + - Thu, 06 Nov 2025 08:41:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7743ca43-eec8-4e4b-a994-caf067cecbff + - 2dca0772-b11e-4835-a91b-a7e0c8d92538 status: 200 OK code: 200 - duration: 212.303336ms + duration: 206.11475ms - id: 27 request: proto: HTTP/1.1 @@ -886,29 +886,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1035 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:34.866629Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1064 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:48.604225Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1035" + - "1064" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:40 GMT + - Thu, 06 Nov 2025 08:41:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 94a18191-d502-4731-915f-b4add7e4499f + - 96be3573-511a-4b90-8718-7eb97e02d711 status: 200 OK code: 200 - duration: 108.751931ms + duration: 126.018459ms - id: 28 request: proto: HTTP/1.1 @@ -918,29 +918,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1035 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:34.866629Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1064 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:48.604225Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1035" + - "1064" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:40 GMT + - Thu, 06 Nov 2025 08:41:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 60012d62-b0ca-4db8-862d-7c5451b76743 + - de0bebba-3420-4800-8417-f7eb762cf278 status: 200 OK code: 200 - duration: 86.203418ms + duration: 141.772375ms - id: 29 request: proto: HTTP/1.1 @@ -950,29 +950,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1035 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:34.866629Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1064 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:48.604225Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1035" + - "1064" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:40 GMT + - Thu, 06 Nov 2025 08:41:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 8fc943b7-a0ad-458b-993a-e361ccf29d39 + - 151d648e-e496-49dd-be4b-28ae3804894f status: 200 OK code: 200 - duration: 93.043586ms + duration: 99.347167ms - id: 30 request: proto: HTTP/1.1 @@ -982,29 +982,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:40 GMT + - Thu, 06 Nov 2025 08:41:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 09cad2d8-93c0-45b4-8ec4-5c8a7666b2f2 + - 70f6bea6-4f16-4a48-9134-c67f26b3a195 status: 200 OK code: 200 - duration: 87.399186ms + duration: 104.496459ms - id: 31 request: proto: HTTP/1.1 @@ -1014,29 +1014,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1035 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:34.866629Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1064 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:48.604225Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1035" + - "1064" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:40 GMT + - Thu, 06 Nov 2025 08:41:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - b36a3e9b-d2de-4a81-aada-5b17664c63be + - c207939e-3307-4e63-8ba4-aa4a294a82f3 status: 200 OK code: 200 - duration: 116.331898ms + duration: 95.127667ms - id: 32 request: proto: HTTP/1.1 @@ -1046,29 +1046,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1035 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:34.866629Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1064 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:48.604225Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1035" + - "1064" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:41 GMT + - Thu, 06 Nov 2025 08:41:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - e2702e42-557d-451f-9743-9a4118bb026d + - 811e7e24-e6ce-47b7-b31a-a34f15a2929e status: 200 OK code: 200 - duration: 116.414894ms + duration: 210.26525ms - id: 33 request: proto: HTTP/1.1 @@ -1078,29 +1078,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d436b148-0399-4ca4-b501-1e1d6717a766 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e37cafbd-22e3-4afa-b4ae-8f2016167955 method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1001 - body: "{\"id\":\"d436b148-0399-4ca4-b501-1e1d6717a766\", \"name\":\"tf-co-reverent-diffie\", \"namespace_id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"status\":\"deleting\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw/tf-co-reverent-diffie:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsgallantsatoshigfon7qtw-tf-co-reverent-diffie.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-10-31T16:31:11.230838Z\", \"updated_at\":\"2025-10-31T16:31:41.149984759Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1030 + body: "{\"id\":\"e37cafbd-22e3-4afa-b4ae-8f2016167955\", \"name\":\"tf-co-condescending-mirzakhani\", \"namespace_id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"status\":\"deleting\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1/tf-co-condescending-mirzakhani:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnshardcoresolomon94btbbi1-tf-co-condescending-mirzakhani.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v2\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-06T08:41:23.438052Z\", \"updated_at\":\"2025-11-06T08:41:54.826137589Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" headers: Content-Length: - - "1001" + - "1030" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:41 GMT + - Thu, 06 Nov 2025 08:41:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9e68963b-029d-4906-b873-f54183f684d5 + - 99c4630d-ecf9-4a15-967e-224280d29efb status: 200 OK code: 200 - duration: 202.291658ms + duration: 185.4725ms - id: 34 request: proto: HTTP/1.1 @@ -1110,29 +1110,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 602 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:10.204434Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 604 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:20.152542Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "602" + - "604" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:41 GMT + - Thu, 06 Nov 2025 08:41:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6a5fdfc8-ecc3-4c01-9e94-9a7cf72e565f + - e7e9f537-2393-4eea-a07d-f46d1d490968 status: 200 OK code: 200 - duration: 84.894468ms + duration: 100.3875ms - id: 35 request: proto: HTTP/1.1 @@ -1142,29 +1142,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 608 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"deleting\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:41.440427957Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 610 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"deleting\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:55.124071887Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "608" + - "610" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:41 GMT + - Thu, 06 Nov 2025 08:41:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - bf6f7686-0c04-456a-bc8f-b38e57bdebbe + - a3488c37-3010-41a6-8d95-ea00e696b28a status: 200 OK code: 200 - duration: 302.613032ms + duration: 299.148375ms - id: 36 request: proto: HTTP/1.1 @@ -1174,29 +1174,29 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 605 - body: "{\"id\":\"3a54f0c2-c201-4391-a401-b094f8e500f9\", \"name\":\"tf-ns-gallant-satoshi\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"deleting\", \"registry_namespace_id\":\"8c419f4c-581e-4aa7-aeaf-c733d2c0e612\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsgallantsatoshigfon7qtw\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-10-31T16:31:05.092607Z\", \"updated_at\":\"2025-10-31T16:31:41.440428Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 607 + body: "{\"id\":\"2a8b7898-0a08-4cda-9876-64d19edcd69e\", \"name\":\"tf-ns-hardcore-solomon\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"deleting\", \"registry_namespace_id\":\"2b92a918-8cfe-42a4-8d1a-5a0d11462244\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnshardcoresolomon94btbbi1\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-06T08:41:17.451011Z\", \"updated_at\":\"2025-11-06T08:41:55.124072Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" headers: Content-Length: - - "605" + - "607" Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:31:41 GMT + - Thu, 06 Nov 2025 08:41:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 819c2374-33bb-4191-9270-511188f6ac36 + - 4f554d1a-3e4e-46fb-b6a5-2844fe9cdb80 status: 200 OK code: 200 - duration: 77.035586ms + duration: 100.656666ms - id: 37 request: proto: HTTP/1.1 @@ -1206,8 +1206,8 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/2a8b7898-0a08-4cda-9876-64d19edcd69e method: GET response: proto: HTTP/2.0 @@ -1221,14 +1221,14 @@ interactions: Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:32:22 GMT + - Thu, 06 Nov 2025 08:42:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 30133739-0873-419e-b43f-3238021389b6 + - 97be80f5-8cc2-4919-bc9c-56862c10ef4e status: 404 Not Found code: 404 - duration: 98.261221ms + duration: 176.226333ms - id: 38 request: proto: HTTP/1.1 @@ -1238,8 +1238,8 @@ interactions: host: api.scaleway.com headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/3a54f0c2-c201-4391-a401-b094f8e500f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/2a8b7898-0a08-4cda-9876-64d19edcd69e method: DELETE response: proto: HTTP/2.0 @@ -1253,11 +1253,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 31 Oct 2025 16:32:22 GMT + - Thu, 06 Nov 2025 08:42:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - ba928580-0159-4463-84ae-5d4c54bd9f62 + - 25f11ee0-6778-472b-845c-63121d308eeb status: 404 Not Found code: 404 - duration: 89.606084ms + duration: 320.964917ms diff --git a/internal/services/container/testdata/container-private-network.cassette.yaml b/internal/services/container/testdata/container-private-network.cassette.yaml index 6849ff617..85099bd8e 100644 --- a/internal/services/container/testdata/container-private-network.cassette.yaml +++ b/internal/services/container/testdata/container-private-network.cassette.yaml @@ -20,22 +20,22 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 429 - body: "{\"id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"name\":\"TestAccContainer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.464266Z\", \"updated_at\":\"2025-11-04T13:30:29.464266Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" + content_length: 418 + body: "{\"id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"name\":\"TestAccContainer_PrivateNetwork\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.152679Z\",\"updated_at\":\"2025-11-06T16:27:23.152679Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"is_default\":false,\"private_network_count\":0,\"routing_enabled\":true,\"custom_routes_propagation_enabled\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "429" + - "418" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:29 GMT + - Thu, 06 Nov 2025 16:27:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - b71e9f54-7c6e-48ae-a441-566136b52862 + - 5e277aa8-8065-424d-84a1-0f146bd9d7f8 status: 200 OK code: 200 - duration: 248.370114ms + duration: 132.698423ms - id: 1 request: proto: HTTP/1.1 @@ -46,36 +46,36 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/72a40579-630f-470e-ba29-9178394d609d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ef1ef8d9-d147-46df-97eb-e7cc8df6616d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 429 - body: "{\"id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"name\":\"TestAccContainer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.464266Z\", \"updated_at\":\"2025-11-04T13:30:29.464266Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" + content_length: 418 + body: "{\"id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"name\":\"TestAccContainer_PrivateNetwork\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.152679Z\",\"updated_at\":\"2025-11-06T16:27:23.152679Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"is_default\":false,\"private_network_count\":0,\"routing_enabled\":true,\"custom_routes_propagation_enabled\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "429" + - "418" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:29 GMT + - Thu, 06 Nov 2025 16:27:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 6e0b2b45-42c4-42e2-b142-af6da1f2c4ee + - 5356bc56-73dc-4a12-8e78-14895bc27512 status: 200 OK code: 200 - duration: 130.57001ms + duration: 37.812028ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 204 + content_length: 205 host: api.scaleway.com - body: "{\"name\":\"test-acc-container-pn-pn00\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\",\"default_route_propagation_enabled\":false}" + body: "{\"name\":\"test-acc-container-pn-start\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"default_route_propagation_enabled\":false}" headers: Content-Type: - application/json @@ -87,89 +87,89 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"name\":\"test-acc-container-pn-pn00\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"463db95d-2cd0-4a7e-835c-520da3cc78ce\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"73398618-a17f-4095-84eb-621913d58c63\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"fd5f:519c:6d46:e3bb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 1073 + body: "{\"id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"name\":\"test-acc-container-pn-start\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"c962a4de-5426-4d3a-b6b3-aa60d8690392\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"172.18.80.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"e59bfdfb-6290-4e43-8875-fc4d71de6c50\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"fd5f:519c:6d46:e1e1::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "1073" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:30 GMT + - Thu, 06 Nov 2025 16:27:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 4436147a-22ba-4163-8e26-fd864733474a + - 3f5489b9-9ef8-46e5-926d-9396034ffcb1 status: 200 OK code: 200 - duration: 628.563149ms + duration: 629.845708ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 204 + content_length: 0 host: api.scaleway.com - body: "{\"name\":\"test-acc-container-pn-pn01\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\",\"default_route_propagation_enabled\":false}" headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/acdbc6b7-b7ca-49c6-b242-1a8566007121 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"name\":\"test-acc-container-pn-pn01\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"2cb6a2b1-6bb4-4906-8c3d-3e03fe14d3d1\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"96189e3e-a8df-4891-8449-697623e656c8\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"fd5f:519c:6d46:b1c9::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 1073 + body: "{\"id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"name\":\"test-acc-container-pn-start\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"c962a4de-5426-4d3a-b6b3-aa60d8690392\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"172.18.80.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"e59bfdfb-6290-4e43-8875-fc4d71de6c50\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"fd5f:519c:6d46:e1e1::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "1073" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:30 GMT + - Thu, 06 Nov 2025 16:27:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 53a2dd68-aa79-4fe9-9f27-e6a27c747217 + - 3b3bfc3b-5563-4991-92d1-3be93bf08c80 status: 200 OK code: 200 - duration: 709.424278ms + duration: 45.540219ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 189 host: api.scaleway.com + body: "{\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"secret_environment_variables\":[],\"tags\":null,\"activate_vpc_integration\":true}" headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf9475ab-cb4b-47f8-9719-76659c0284cc - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"name\":\"test-acc-container-pn-pn00\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"463db95d-2cd0-4a7e-835c-520da3cc78ce\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"73398618-a17f-4095-84eb-621913d58c63\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"fd5f:519c:6d46:e3bb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 506 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"pending\",\"registry_namespace_id\":\"\",\"error_message\":null,\"registry_endpoint\":\"\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287435Z\",\"updated_at\":\"2025-11-06T16:27:24.175287435Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "506" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:30 GMT + - Thu, 06 Nov 2025 16:27:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 7e743946-201a-4c43-90c1-f69dea625021 + - fc6199c9-b263-43e2-bc29-427a17319db1 status: 200 OK code: 200 - duration: 107.79502ms + duration: 1.15667322s - id: 5 request: proto: HTTP/1.1 @@ -180,63 +180,60 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/350dcdde-e9fb-4104-84bf-251062e6fd91 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"name\":\"test-acc-container-pn-pn01\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"2cb6a2b1-6bb4-4906-8c3d-3e03fe14d3d1\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"96189e3e-a8df-4891-8449-697623e656c8\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"fd5f:519c:6d46:b1c9::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 500 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"pending\",\"registry_namespace_id\":\"\",\"error_message\":null,\"registry_endpoint\":\"\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:24.175287Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "500" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:30 GMT + - Thu, 06 Nov 2025 16:27:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - e580e0f6-6642-417f-81be-9f57c2a28ccd + - dd72327b-6fc5-462b-bc5e-57a4bbf2e7e9 status: 200 OK code: 200 - duration: 147.262133ms + duration: 98.806696ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 186 + content_length: 0 host: api.scaleway.com - body: "{\"name\":\"tf-ns-dreamy-hertz\",\"environment_variables\":{},\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"secret_environment_variables\":[],\"tags\":null,\"activate_vpc_integration\":true}" headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces - method: POST + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 518 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"pending\", \"registry_namespace_id\":\"\", \"error_message\":null, \"registry_endpoint\":\"\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753922732Z\", \"updated_at\":\"2025-11-04T13:30:30.753922732Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "518" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:30 GMT + - Thu, 06 Nov 2025 16:27:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 35a9fd20-2a53-4449-a7d6-6c207cfc482d + - 96799553-98a4-49e2-9c34-30312633b1c9 status: 200 OK code: 200 - duration: 1.524035939s + duration: 92.5137ms - id: 7 request: proto: HTTP/1.1 @@ -247,28 +244,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 512 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"pending\", \"registry_namespace_id\":\"\", \"error_message\":null, \"registry_endpoint\":\"\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:30.753923Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "512" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:30 GMT + - Thu, 06 Nov 2025 16:27:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - c51e2d51-f820-43a6-88bd-68493453850a + - 8707185b-f9a4-42c4-a319-e706cc35e4a9 status: 200 OK code: 200 - duration: 103.112859ms + duration: 89.399003ms - id: 8 request: proto: HTTP/1.1 @@ -279,60 +276,63 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:35 GMT + - Thu, 06 Nov 2025 16:27:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 6d534fb4-1ed2-467f-adad-741b258851b7 + - dc8eaad7-82f5-4930-be4b-18be3d310d9d status: 200 OK code: 200 - duration: 123.233251ms + duration: 88.542143ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 313 host: api.scaleway.com + body: "{\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"test-acc-container-pn-to-stay\",\"privacy\":\"public\",\"protocol\":\"http1\",\"secret_environment_variables\":null,\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":null,\"args\":null}" headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1037 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106490820Z\",\"updated_at\":\"2025-11-06T16:27:30.106490820Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1037" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:36 GMT + - Thu, 06 Nov 2025 16:27:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - c8e2d80b-5349-4c3a-8328-446fe571e9d7 + - 46a4b215-28c0-4e8a-9a72-a9e833df6274 status: 200 OK code: 200 - duration: 115.441212ms + duration: 551.863789ms - id: 10 request: proto: HTTP/1.1 @@ -343,63 +343,60 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:36 GMT + - Thu, 06 Nov 2025 16:27:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - ad5f035c-c9bf-454d-8d5e-52a5b6c124b6 + - a8c40c53-7896-4a7e-9894-d55d3c194853 status: 200 OK code: 200 - duration: 101.408305ms + duration: 136.682118ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 305 + content_length: 0 host: api.scaleway.com - body: "{\"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\",\"name\":\"test-acc-container-pn-c00\",\"privacy\":\"public\",\"protocol\":\"http1\",\"secret_environment_variables\":null,\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"tags\":[\"c00\"],\"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\",\"command\":null,\"args\":null}" headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1048 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899643724Z\", \"updated_at\":\"2025-11-04T13:30:36.899643724Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1048" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:36 GMT + - Thu, 06 Nov 2025 16:27:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 131ac42f-00cd-4d5a-a28f-a95712a90cb7 + - 10145da0-edf9-4c6c-b6fc-30c3565acece status: 200 OK code: 200 - duration: 722.471597ms + duration: 162.514549ms - id: 12 request: proto: HTTP/1.1 @@ -410,28 +407,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ef1ef8d9-d147-46df-97eb-e7cc8df6616d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:36.899644Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 418 + body: "{\"id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"name\":\"TestAccContainer_PrivateNetwork\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.152679Z\",\"updated_at\":\"2025-11-06T16:27:23.152679Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"is_default\":false,\"private_network_count\":1,\"routing_enabled\":true,\"custom_routes_propagation_enabled\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "418" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - a0323c6e-69c8-4e12-8484-7beea0696c54 + - 2a2ea33d-3d89-4c59-b339-8b6b82bb2c4d status: 200 OK code: 200 - duration: 115.720989ms + duration: 21.298306ms - id: 13 request: proto: HTTP/1.1 @@ -442,28 +439,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/acdbc6b7-b7ca-49c6-b242-1a8566007121 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:36.899644Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1073 + body: "{\"id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"name\":\"test-acc-container-pn-start\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"c962a4de-5426-4d3a-b6b3-aa60d8690392\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"172.18.80.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"e59bfdfb-6290-4e43-8875-fc4d71de6c50\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"fd5f:519c:6d46:e1e1::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1073" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 8ccbfb8c-7d66-4acc-84f5-15fc1e9521d7 + - 32463791-0986-494f-a125-54c3ad59f240 status: 200 OK code: 200 - duration: 129.743156ms + duration: 26.882326ms - id: 14 request: proto: HTTP/1.1 @@ -474,28 +471,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/72a40579-630f-470e-ba29-9178394d609d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 429 - body: "{\"id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"name\":\"TestAccContainer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.464266Z\", \"updated_at\":\"2025-11-04T13:30:29.464266Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":2, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "429" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - b645bdb6-5427-4ed1-b279-5f801e1ee228 + - 9f01968c-a018-46f9-a817-a6e553b95ebb status: 200 OK code: 200 - duration: 39.267311ms + duration: 79.272383ms - id: 15 request: proto: HTTP/1.1 @@ -506,28 +503,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 38cdd3b0-9c45-4c49-8cfd-80a8194f92c1 + - 87bb1f94-a7a7-4774-92cc-0edbd4386325 status: 200 OK code: 200 - duration: 130.7634ms + duration: 97.959098ms - id: 16 request: proto: HTTP/1.1 @@ -538,28 +535,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf9475ab-cb4b-47f8-9719-76659c0284cc + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ef1ef8d9-d147-46df-97eb-e7cc8df6616d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"name\":\"test-acc-container-pn-pn00\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"463db95d-2cd0-4a7e-835c-520da3cc78ce\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"73398618-a17f-4095-84eb-621913d58c63\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"fd5f:519c:6d46:e3bb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 418 + body: "{\"id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"name\":\"TestAccContainer_PrivateNetwork\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.152679Z\",\"updated_at\":\"2025-11-06T16:27:23.152679Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"is_default\":false,\"private_network_count\":1,\"routing_enabled\":true,\"custom_routes_propagation_enabled\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "418" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - a8bb8660-fc23-4e04-831d-ffa0325b210f + - 7e7ec61b-c4e4-4ab6-ac85-385f6dcf5986 status: 200 OK code: 200 - duration: 112.492439ms + duration: 31.4639ms - id: 17 request: proto: HTTP/1.1 @@ -570,28 +567,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/350dcdde-e9fb-4104-84bf-251062e6fd91 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/acdbc6b7-b7ca-49c6-b242-1a8566007121 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"name\":\"test-acc-container-pn-pn01\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"2cb6a2b1-6bb4-4906-8c3d-3e03fe14d3d1\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"96189e3e-a8df-4891-8449-697623e656c8\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"fd5f:519c:6d46:b1c9::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 1073 + body: "{\"id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"name\":\"test-acc-container-pn-start\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"c962a4de-5426-4d3a-b6b3-aa60d8690392\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"172.18.80.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"e59bfdfb-6290-4e43-8875-fc4d71de6c50\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"fd5f:519c:6d46:e1e1::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "1073" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 81efbbf4-e6ce-496b-9176-6fd2ba41d9ea + - e1d6c1d4-60dc-4ed4-bf92-14e8a32e8d10 status: 200 OK code: 200 - duration: 121.881127ms + duration: 33.967037ms - id: 18 request: proto: HTTP/1.1 @@ -602,28 +599,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:36.899644Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - cb2abfac-b296-4465-9cc6-af1a3e6a5bfb + - 6c58e1d4-e7b8-4154-9d50-c17ad484fefd status: 200 OK code: 200 - duration: 133.191218ms + duration: 89.325014ms - id: 19 request: proto: HTTP/1.1 @@ -634,28 +631,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - a068638a-c8a9-49da-93ac-2138fb5a41a4 + - 16f82f8d-9d29-4756-8039-fb5317ead3fd status: 200 OK code: 200 - duration: 99.763301ms + duration: 91.135999ms - id: 20 request: proto: HTTP/1.1 @@ -666,28 +663,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/72a40579-630f-470e-ba29-9178394d609d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 429 - body: "{\"id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"name\":\"TestAccContainer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.464266Z\", \"updated_at\":\"2025-11-04T13:30:29.464266Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":2, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "429" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:37 GMT + - Thu, 06 Nov 2025 16:27:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 9f8098eb-e0c3-4241-bd44-4448392bcced + - 4678a302-5aa3-4d1d-a6c6-a8ce0c15734b status: 200 OK code: 200 - duration: 99.966264ms + duration: 82.709234ms - id: 21 request: proto: HTTP/1.1 @@ -698,92 +695,98 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/350dcdde-e9fb-4104-84bf-251062e6fd91 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"name\":\"test-acc-container-pn-pn01\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"2cb6a2b1-6bb4-4906-8c3d-3e03fe14d3d1\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"96189e3e-a8df-4891-8449-697623e656c8\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"fd5f:519c:6d46:b1c9::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:38 GMT + - Thu, 06 Nov 2025 16:27:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - f74df08b-e87c-4580-9f5f-72d571b94470 + - 658b1df3-11c1-4db5-b31b-65c30d3c84d8 status: 200 OK code: 200 - duration: 43.67283ms + duration: 100.094593ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 317 host: api.scaleway.com + body: "{\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"test-acc-container-pn-to-remove\",\"privacy\":\"public\",\"protocol\":\"http1\",\"secret_environment_variables\":null,\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"tags\":[\"to-remove\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":null,\"args\":null}" headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf9475ab-cb4b-47f8-9719-76659c0284cc - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"name\":\"test-acc-container-pn-pn00\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"463db95d-2cd0-4a7e-835c-520da3cc78ce\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"73398618-a17f-4095-84eb-621913d58c63\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"fd5f:519c:6d46:e3bb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 1045 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245180Z\",\"updated_at\":\"2025-11-06T16:27:32.108245180Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "1045" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:38 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 1e21eaa2-5131-4958-bb08-0319418c2351 + - de8754e3-28bc-409d-b1e5-aa8b247cffd3 status: 200 OK code: 200 - duration: 45.416218ms + duration: 660.179623ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 317 host: api.scaleway.com + body: "{\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"test-acc-container-pn-to-change\",\"privacy\":\"public\",\"protocol\":\"http1\",\"secret_environment_variables\":null,\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"tags\":[\"to-change\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":null,\"args\":null}" headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:36.899644Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1045 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126175515Z\",\"updated_at\":\"2025-11-06T16:27:32.126175515Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1045" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:38 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 16656c85-acfa-4e7c-aa5e-f3053dac5f55 + - bee0ba92-364d-47dd-9b62-cf62772675af status: 200 OK code: 200 - duration: 117.698667ms + duration: 712.014065ms - id: 24 request: proto: HTTP/1.1 @@ -794,28 +797,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:32.108245Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:38 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 14258aa5-20b3-4281-822d-12474ea455d1 + - 6fd9de47-511f-4c4e-b1a2-6f48d035815e status: 200 OK code: 200 - duration: 107.301397ms + duration: 113.782819ms - id: 25 request: proto: HTTP/1.1 @@ -826,98 +829,92 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:32.126176Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:38 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 24c55876-1aa3-4d25-8555-5587d44a6d89 + - d7515b1a-a75b-4894-8c6d-61b155d7680b status: 200 OK code: 200 - duration: 127.772407ms + duration: 110.627397ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 305 + content_length: 0 host: api.scaleway.com - body: "{\"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\",\"name\":\"test-acc-container-pn-c02\",\"privacy\":\"public\",\"protocol\":\"http1\",\"secret_environment_variables\":null,\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"tags\":[\"c02\"],\"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\",\"command\":null,\"args\":null}" headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1048 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787233Z\", \"updated_at\":\"2025-11-04T13:30:39.183787233Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1048" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:39 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - b99de030-fec4-4c4f-9aac-d7af9313ed8f + - 5f370ef7-60fb-487c-919e-5dbc343a3412 status: 200 OK code: 200 - duration: 776.861976ms + duration: 90.005903ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 305 + content_length: 0 host: api.scaleway.com - body: "{\"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\",\"name\":\"test-acc-container-pn-c01\",\"privacy\":\"public\",\"protocol\":\"http1\",\"secret_environment_variables\":null,\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"tags\":[\"c01\"],\"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\",\"command\":null,\"args\":null}" headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers - method: POST + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1048 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572160Z\", \"updated_at\":\"2025-11-04T13:30:39.184572160Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:32.126176Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1048" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:39 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - d54ff553-2dd9-45bc-ab42-d3cb44851839 + - 32a1e3a1-9fbf-4bd0-b199-2827d919855e status: 200 OK code: 200 - duration: 764.338616ms + duration: 104.104202ms - id: 28 request: proto: HTTP/1.1 @@ -928,28 +925,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d43b73b9-204f-44f4-834d-49f10a565084 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787Z\", \"updated_at\":\"2025-11-04T13:30:39.183787Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:32.108245Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:39 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 78b7dd3a-0a11-4ca5-937d-5731d3b422ad + - cee9b6e5-3861-411f-a695-0a34712cd5e9 status: 200 OK code: 200 - duration: 108.227361ms + duration: 89.342125ms - id: 29 request: proto: HTTP/1.1 @@ -960,28 +957,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ef1ef8d9-d147-46df-97eb-e7cc8df6616d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:39.184572Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 418 + body: "{\"id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"name\":\"TestAccContainer_PrivateNetwork\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.152679Z\",\"updated_at\":\"2025-11-06T16:27:23.152679Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"is_default\":false,\"private_network_count\":1,\"routing_enabled\":true,\"custom_routes_propagation_enabled\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "418" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:39 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 1dcda50f-759a-4f9d-9595-5a593ed3b398 + - e449a4d2-7cb1-4e51-8505-3815de3f2369 status: 200 OK code: 200 - duration: 143.271026ms + duration: 26.550732ms - id: 30 request: proto: HTTP/1.1 @@ -992,28 +989,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/acdbc6b7-b7ca-49c6-b242-1a8566007121 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:36.899644Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1073 + body: "{\"id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"name\":\"test-acc-container-pn-start\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"c962a4de-5426-4d3a-b6b3-aa60d8690392\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"172.18.80.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"e59bfdfb-6290-4e43-8875-fc4d71de6c50\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"fd5f:519c:6d46:e1e1::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1073" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:39 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 46ab9aac-b832-4032-8cce-3cf78863d799 + - 80f5243b-f711-43ec-9c12-3fdfcd1760bb status: 200 OK code: 200 - duration: 118.032435ms + duration: 23.662972ms - id: 31 request: proto: HTTP/1.1 @@ -1024,28 +1021,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:39.184572Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:39 GMT + - Thu, 06 Nov 2025 16:27:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - bbe3342e-f927-4344-ab2b-ce40af44dfc7 + - 2ccdff5c-95fb-40f1-ad1e-26e3ffcddb7a status: 200 OK code: 200 - duration: 117.868335ms + duration: 78.669748ms - id: 32 request: proto: HTTP/1.1 @@ -1056,28 +1053,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d43b73b9-204f-44f4-834d-49f10a565084 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787Z\", \"updated_at\":\"2025-11-04T13:30:39.183787Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:32.108245Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:39 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 42adb1ac-fa88-48c9-9c09-de72259529e3 + - 5c288e7c-52da-4449-b5ca-bbb89109b14c status: 200 OK code: 200 - duration: 122.445067ms + duration: 101.287595ms - id: 33 request: proto: HTTP/1.1 @@ -1088,28 +1085,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/72a40579-630f-470e-ba29-9178394d609d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 429 - body: "{\"id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"name\":\"TestAccContainer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.464266Z\", \"updated_at\":\"2025-11-04T13:30:29.464266Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":2, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "429" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 94039600-345c-410f-8c10-1c1061d5b6a5 + - 3e199313-e044-4107-b6d4-541999706297 status: 200 OK code: 200 - duration: 100.87844ms + duration: 109.739998ms - id: 34 request: proto: HTTP/1.1 @@ -1120,28 +1117,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:32.126176Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - da580479-ea0c-4c7f-9e67-4f6191249cb1 + - 53e5a06f-ef76-4ed3-931b-5fe58d157d02 status: 200 OK code: 200 - duration: 109.057887ms + duration: 117.466636ms - id: 35 request: proto: HTTP/1.1 @@ -1152,28 +1149,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/350dcdde-e9fb-4104-84bf-251062e6fd91 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ef1ef8d9-d147-46df-97eb-e7cc8df6616d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"name\":\"test-acc-container-pn-pn01\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"2cb6a2b1-6bb4-4906-8c3d-3e03fe14d3d1\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"96189e3e-a8df-4891-8449-697623e656c8\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"fd5f:519c:6d46:b1c9::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 418 + body: "{\"id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"name\":\"TestAccContainer_PrivateNetwork\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.152679Z\",\"updated_at\":\"2025-11-06T16:27:23.152679Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"is_default\":false,\"private_network_count\":1,\"routing_enabled\":true,\"custom_routes_propagation_enabled\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "418" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 9062d656-9bd4-47e1-b2f9-afa96b9fa87d + - f571d3b5-fb42-4f29-a0e3-08b4670036c9 status: 200 OK code: 200 - duration: 43.837359ms + duration: 80.999769ms - id: 36 request: proto: HTTP/1.1 @@ -1184,28 +1181,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf9475ab-cb4b-47f8-9719-76659c0284cc + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"name\":\"test-acc-container-pn-pn00\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"463db95d-2cd0-4a7e-835c-520da3cc78ce\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"73398618-a17f-4095-84eb-621913d58c63\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"fd5f:519c:6d46:e3bb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 6175dbe0-0ca2-4449-99ce-018e73c64343 + - 6835598d-86aa-41d8-ada6-d6b1a61fd9b9 status: 200 OK code: 200 - duration: 50.471671ms + duration: 85.602754ms - id: 37 request: proto: HTTP/1.1 @@ -1216,28 +1213,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/acdbc6b7-b7ca-49c6-b242-1a8566007121 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:36.899644Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1073 + body: "{\"id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"name\":\"test-acc-container-pn-start\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"c962a4de-5426-4d3a-b6b3-aa60d8690392\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"172.18.80.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"e59bfdfb-6290-4e43-8875-fc4d71de6c50\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"fd5f:519c:6d46:e1e1::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1073" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - ff1fe226-2237-4a89-9429-8149037664f4 + - f08474b9-469a-4751-9781-97eace0617e5 status: 200 OK code: 200 - duration: 121.404353ms + duration: 26.536806ms - id: 38 request: proto: HTTP/1.1 @@ -1248,28 +1245,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d43b73b9-204f-44f4-834d-49f10a565084 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787Z\", \"updated_at\":\"2025-11-04T13:30:39.183787Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:32.108245Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 6b231855-01c5-4936-8f2a-a40e22dd3882 + - 8667f7b0-372c-4b34-9eff-5a24ec1e7df3 status: 200 OK code: 200 - duration: 123.828675ms + duration: 114.526848ms - id: 39 request: proto: HTTP/1.1 @@ -1280,28 +1277,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:39.184572Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:32.126176Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 76d41b1c-c172-4378-b4e1-6e09b9fcfdc7 + - e2b9cbc1-e42f-465c-b0f3-a0c5b06915be status: 200 OK code: 200 - duration: 145.337241ms + duration: 124.811375ms - id: 40 request: proto: HTTP/1.1 @@ -1312,28 +1309,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/72a40579-630f-470e-ba29-9178394d609d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 429 - body: "{\"id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"name\":\"TestAccContainer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.464266Z\", \"updated_at\":\"2025-11-04T13:30:29.464266Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":2, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "429" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - fc1cd5f9-f074-4594-8c47-7429bc481dab + - e079ecdf-abbe-4a9c-b829-1b739e0f3e4f status: 200 OK code: 200 - duration: 42.520575ms + duration: 119.570381ms - id: 41 request: proto: HTTP/1.1 @@ -1344,28 +1341,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - c296ee98-608c-492d-9343-a79e05e48874 + - 7f7473c2-52b6-4258-bb1b-cd792c0cfc4a status: 200 OK code: 200 - duration: 92.015103ms + duration: 93.619598ms - id: 42 request: proto: HTTP/1.1 @@ -1376,60 +1373,63 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf9475ab-cb4b-47f8-9719-76659c0284cc + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"name\":\"test-acc-container-pn-pn00\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"463db95d-2cd0-4a7e-835c-520da3cc78ce\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"73398618-a17f-4095-84eb-621913d58c63\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"fd5f:519c:6d46:e3bb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:32.108245Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 0a20fa61-8f88-42a7-8f65-fa7d29b4cffd + - f874c93d-03a5-4495-aa6b-8da91c8a4a68 status: 200 OK code: 200 - duration: 49.228175ms + duration: 91.453324ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 183 host: api.scaleway.com + body: "{\"privacy\":\"unknown_privacy\",\"protocol\":\"unknown_protocol\",\"secret_environment_variables\":null,\"http_option\":\"unknown_http_option\",\"sandbox\":\"unknown_sandbox\",\"private_network_id\":\"\"}" headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/350dcdde-e9fb-4104-84bf-251062e6fd91 - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"name\":\"test-acc-container-pn-pn01\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"2cb6a2b1-6bb4-4906-8c3d-3e03fe14d3d1\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"96189e3e-a8df-4891-8449-697623e656c8\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"fd5f:519c:6d46:b1c9::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 1008 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"pending\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:33.853837037Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":null,\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "1008" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - e782f16e-6801-430b-8366-f91e0b441463 + - 86e6e8cf-54db-49ba-8c79-5578ffb3983c status: 200 OK code: 200 - duration: 52.874292ms + duration: 110.393917ms - id: 44 request: proto: HTTP/1.1 @@ -1440,60 +1440,63 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:36.899644Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1005 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"pending\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:33.853837Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":null,\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1005" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 5894e770-7bc5-4deb-99a3-ce7fded178ba + - 64809486-b02d-4455-823b-5da25d90ccdf status: 200 OK code: 200 - duration: 133.756189ms + duration: 98.358508ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 203 host: api.scaleway.com + body: "{\"name\":\"test-acc-container-pn-new\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"default_route_propagation_enabled\":false}" headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:39.184572Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1071 + body: "{\"id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"name\":\"test-acc-container-pn-new\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"04ffb7a2-13bc-4355-bc30-0ef917ea9d9c\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"subnet\":\"172.18.68.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"1586fa50-be7a-4665-b1f3-1d07975ccc82\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"subnet\":\"fd5f:519c:6d46:d5a6::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1071" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 17baaa3b-1b1f-4833-be2c-092f359991c8 + - 9fb2d5c6-0d2a-4b15-959a-42eab34e6f79 status: 200 OK code: 200 - duration: 122.115174ms + duration: 622.608883ms - id: 46 request: proto: HTTP/1.1 @@ -1504,28 +1507,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d43b73b9-204f-44f4-834d-49f10a565084 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/be1f4252-a826-4ca7-901b-068a0ebfd402 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787Z\", \"updated_at\":\"2025-11-04T13:30:39.183787Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1071 + body: "{\"id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"name\":\"test-acc-container-pn-new\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"04ffb7a2-13bc-4355-bc30-0ef917ea9d9c\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"subnet\":\"172.18.68.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"1586fa50-be7a-4665-b1f3-1d07975ccc82\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"subnet\":\"fd5f:519c:6d46:d5a6::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1071" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - e657a305-ee28-45d7-8f34-c12ec965006a + - 3af91e5f-b7b4-43f5-b0dc-2104eca1bab1 status: 200 OK code: 200 - duration: 155.513003ms + duration: 27.060871ms - id: 47 request: proto: HTTP/1.1 @@ -1536,28 +1539,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:40 GMT + - Thu, 06 Nov 2025 16:27:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 45270ce8-9841-49f2-afbb-ac891aa6cd82 + - 6e324253-ec3b-40e8-b928-dabe37d1b0dc status: 200 OK code: 200 - duration: 114.800858ms + duration: 88.930791ms - id: 48 request: proto: HTTP/1.1 @@ -1568,60 +1571,63 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:32.126176Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:41 GMT + - Thu, 06 Nov 2025 16:27:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 1c4fc584-3e9e-49dd-aedc-567fce0b3432 + - 84b4bbae-a759-46af-a105-887c9136d716 status: 200 OK code: 200 - duration: 152.167101ms + duration: 99.415133ms - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 219 host: api.scaleway.com + body: "{\"privacy\":\"unknown_privacy\",\"protocol\":\"unknown_protocol\",\"secret_environment_variables\":null,\"http_option\":\"unknown_http_option\",\"sandbox\":\"unknown_sandbox\",\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\"}" headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1042 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:39.184572Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"pending\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:34.611651677Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - "1042" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:41 GMT + - Thu, 06 Nov 2025 16:27:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - f967ea8c-ce15-44ac-9c6a-bbde604857e9 + - 3b1dfea6-21ee-4e48-8402-fab413ba4db8 status: 200 OK code: 200 - duration: 113.900408ms + duration: 205.028592ms - id: 50 request: proto: HTTP/1.1 @@ -1632,98 +1638,92 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:36.899644Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1039 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"pending\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:34.611652Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1039" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:41 GMT + - Thu, 06 Nov 2025 16:27:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 85f3ea71-ff45-4e50-9b1b-4920a18fdce6 + - 470c9b85-12bb-4b43-ad61-369398fbc7b3 status: 200 OK code: 200 - duration: 115.505155ms + duration: 95.311828ms - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 183 + content_length: 0 host: api.scaleway.com - body: "{\"privacy\":\"unknown_privacy\",\"protocol\":\"unknown_protocol\",\"secret_environment_variables\":null,\"http_option\":\"unknown_http_option\",\"sandbox\":\"unknown_sandbox\",\"private_network_id\":\"\"}" headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d - method: PATCH + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1011 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:41.287674264Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1043 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:40.277619Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":null,\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1011" + - "1043" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:41 GMT + - Thu, 06 Nov 2025 16:27:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 5d823c12-e218-4d2b-b727-a5a1695fb570 + - 6baffe41-106f-40ce-aaf2-d558f0ecda8a status: 200 OK code: 200 - duration: 175.991884ms + duration: 127.209797ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 219 + content_length: 0 host: api.scaleway.com - body: "{\"privacy\":\"unknown_privacy\",\"protocol\":\"unknown_protocol\",\"secret_environment_variables\":null,\"http_option\":\"unknown_http_option\",\"sandbox\":\"unknown_sandbox\",\"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\"}" headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 - method: PATCH + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1045 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:41.358657849Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1043 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:40.277619Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":null,\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1045" + - "1043" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:41 GMT + - Thu, 06 Nov 2025 16:27:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 35bb0aac-f486-4ae0-b835-69d1416c7c21 + - 5aec316b-ee8e-44dd-8114-b7324851e29a status: 200 OK code: 200 - duration: 281.701103ms + duration: 106.843334ms - id: 53 request: proto: HTTP/1.1 @@ -1734,28 +1734,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1008 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"pending\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:41.287674Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1077 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:41.022038Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1008" + - "1077" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:41 GMT + - Thu, 06 Nov 2025 16:27:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 579305ff-4af8-4d7c-b7be-32e6c7172ca8 + - 47af1d7c-14cd-4245-8f20-747a4be27200 status: 200 OK code: 200 - duration: 129.920483ms + duration: 84.99696ms - id: 54 request: proto: HTTP/1.1 @@ -1766,28 +1766,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1046 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:47.673388Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1077 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:41.022038Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1046" + - "1077" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:51 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 73cc150f-2e8c-4ab0-b504-db46ae69bb65 + - dc0cbcce-ffbf-4d8e-bc57-16882f37c40a status: 200 OK code: 200 - duration: 205.084303ms + duration: 118.484251ms - id: 55 request: proto: HTTP/1.1 @@ -1798,28 +1798,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1080 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:47.834561Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1080" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 4b4f4f3b-2159-460e-9f01-ed2efa64d6a9 + - 3e815456-4dd5-478f-98f6-aa62e8b85dcc status: 200 OK code: 200 - duration: 241.924358ms + duration: 90.269873ms - id: 56 request: proto: HTTP/1.1 @@ -1830,28 +1830,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1046 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:47.673388Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1077 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:41.022038Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1046" + - "1077" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 608139d5-478c-4995-92a1-e495a51f7aa7 + - 888e5a1e-a46a-43ea-83eb-c0f5f04ecd70 status: 200 OK code: 200 - duration: 122.311753ms + duration: 88.703137ms - id: 57 request: proto: HTTP/1.1 @@ -1862,28 +1862,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1080 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:47.834561Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1043 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:40.277619Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":null,\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1080" + - "1043" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - cb774c8c-24b5-40a8-8759-067128d397a6 + - d22c8ffc-819d-4663-bd0d-049db8c3afb4 status: 200 OK code: 200 - duration: 129.757875ms + duration: 98.80488ms - id: 58 request: proto: HTTP/1.1 @@ -1894,28 +1894,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ef1ef8d9-d147-46df-97eb-e7cc8df6616d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1046 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:47.673388Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 418 + body: "{\"id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"name\":\"TestAccContainer_PrivateNetwork\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.152679Z\",\"updated_at\":\"2025-11-06T16:27:23.152679Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"is_default\":false,\"private_network_count\":2,\"routing_enabled\":true,\"custom_routes_propagation_enabled\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1046" + - "418" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 1e552c38-22e3-4578-8b4f-d311536ec24f + - 846f8a11-e55f-4c53-8c73-d94f1796772b status: 200 OK code: 200 - duration: 128.64159ms + duration: 31.30043ms - id: 59 request: proto: HTTP/1.1 @@ -1926,28 +1926,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/be1f4252-a826-4ca7-901b-068a0ebfd402 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1080 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:47.834561Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1071 + body: "{\"id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"name\":\"test-acc-container-pn-new\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"04ffb7a2-13bc-4355-bc30-0ef917ea9d9c\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"subnet\":\"172.18.68.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"1586fa50-be7a-4665-b1f3-1d07975ccc82\",\"created_at\":\"2025-11-06T16:27:33.625552Z\",\"updated_at\":\"2025-11-06T16:27:33.625552Z\",\"subnet\":\"fd5f:519c:6d46:d5a6::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1080" + - "1071" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 5953c6ad-529b-4ed0-a1e9-6c826b69e80b + - 7cb0fb01-8ce0-440c-b66f-f751b37d2323 status: 200 OK code: 200 - duration: 140.351523ms + duration: 29.312192ms - id: 60 request: proto: HTTP/1.1 @@ -1958,28 +1958,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d43b73b9-204f-44f4-834d-49f10a565084 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/acdbc6b7-b7ca-49c6-b242-1a8566007121 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787Z\", \"updated_at\":\"2025-11-04T13:30:39.183787Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1073 + body: "{\"id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"name\":\"test-acc-container-pn-start\",\"tags\":[],\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"subnets\":[{\"id\":\"c962a4de-5426-4d3a-b6b3-aa60d8690392\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"172.18.80.0/22\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"},{\"id\":\"e59bfdfb-6290-4e43-8875-fc4d71de6c50\",\"created_at\":\"2025-11-06T16:27:23.282603Z\",\"updated_at\":\"2025-11-06T16:27:23.282603Z\",\"subnet\":\"fd5f:519c:6d46:e1e1::/64\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\"}],\"vpc_id\":\"ef1ef8d9-d147-46df-97eb-e7cc8df6616d\",\"dhcp_enabled\":true,\"default_route_propagation_enabled\":false,\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1073" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 0553d299-9d7f-4fe0-9558-dad478025d08 + - b1e59cdb-5193-46de-adda-236c4d38a52c status: 200 OK code: 200 - duration: 111.947918ms + duration: 30.623508ms - id: 61 request: proto: HTTP/1.1 @@ -1990,28 +1990,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/72a40579-630f-470e-ba29-9178394d609d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 429 - body: "{\"id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"name\":\"TestAccContainer_PrivateNetwork\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.464266Z\", \"updated_at\":\"2025-11-04T13:30:29.464266Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":2, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "429" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 6c15d4c3-570e-47a6-826f-3f4ea71ae70a + - bf3e5a2b-30c9-4979-91e3-2ef39917b771 status: 200 OK code: 200 - duration: 49.074197ms + duration: 89.355403ms - id: 62 request: proto: HTTP/1.1 @@ -2022,28 +2022,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "596" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - d39d8fcf-5b06-4eae-896a-6025874e1dcf + - 9c27101e-4f03-45e0-bde6-f531ec27792e status: 200 OK code: 200 - duration: 271.484009ms + duration: 99.95406ms - id: 63 request: proto: HTTP/1.1 @@ -2054,28 +2054,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/350dcdde-e9fb-4104-84bf-251062e6fd91 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"name\":\"test-acc-container-pn-pn01\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"2cb6a2b1-6bb4-4906-8c3d-3e03fe14d3d1\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"172.18.48.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"96189e3e-a8df-4891-8449-697623e656c8\", \"created_at\":\"2025-11-04T13:30:29.816102Z\", \"updated_at\":\"2025-11-04T13:30:29.816102Z\", \"subnet\":\"fd5f:519c:6d46:b1c9::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 1077 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:41.022038Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "1077" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 7af90a2a-1c88-48a9-b296-a0c78310a75c + - 20c88618-2800-48c6-92b3-e2a6de9f425f status: 200 OK code: 200 - duration: 217.285558ms + duration: 126.197653ms - id: 64 request: proto: HTTP/1.1 @@ -2086,28 +2086,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf9475ab-cb4b-47f8-9719-76659c0284cc + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1096 - body: "{\"id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"name\":\"test-acc-container-pn-pn00\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"463db95d-2cd0-4a7e-835c-520da3cc78ce\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}, {\"id\":\"73398618-a17f-4095-84eb-621913d58c63\", \"created_at\":\"2025-11-04T13:30:29.739626Z\", \"updated_at\":\"2025-11-04T13:30:29.739626Z\", \"subnet\":\"fd5f:519c:6d46:e3bb::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\"}], \"vpc_id\":\"72a40579-630f-470e-ba29-9178394d609d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" + content_length: 1043 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:40.277619Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":null,\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1096" + - "1043" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:52 GMT + - Thu, 06 Nov 2025 16:27:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - e3bcece0-a136-4767-be2f-d33562b88fe1 + - 1c33711a-0dac-471e-8ce6-719c2f09378d status: 200 OK code: 200 - duration: 217.436443ms + duration: 133.229975ms - id: 65 request: proto: HTTP/1.1 @@ -2118,28 +2118,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1046 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:47.673388Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1077 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:41.022038Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1046" + - "1077" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:53 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 8dea0d8e-e19b-48f3-b2b8-96a6e64f5a15 + - e0a86449-a049-4639-90c5-202470e80192 status: 200 OK code: 200 - duration: 117.532759ms + duration: 83.99768ms - id: 66 request: proto: HTTP/1.1 @@ -2150,28 +2150,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d43b73b9-204f-44f4-834d-49f10a565084 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787Z\", \"updated_at\":\"2025-11-04T13:30:39.183787Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1043 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"error\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":\"Image was not found in container registry.\",\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:40.277619Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":null,\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1043" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:53 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 8ac6b971-870f-41e6-a2f6-97563317e282 + - c12dcd1b-1cfb-42e9-bfab-d9d0203dd0b3 status: 200 OK code: 200 - duration: 119.629783ms + duration: 115.67047ms - id: 67 request: proto: HTTP/1.1 @@ -2182,28 +2182,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1080 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:47.834561Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1031 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"created\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:30.106491Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1080" + - "1031" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:53 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - dc209ef8-2864-440d-8743-b04f4631b85d + - 81cc466a-03f9-4174-bc75-406cda6efdff status: 200 OK code: 200 - duration: 118.587167ms + duration: 119.903479ms - id: 68 request: proto: HTTP/1.1 @@ -2214,28 +2214,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d43b73b9-204f-44f4-834d-49f10a565084 - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/e9d30743-bba4-4e60-832e-170e9eb3a63a + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1042 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"created\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787Z\", \"updated_at\":\"2025-11-04T13:30:39.183787Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1043 + body: "{\"id\":\"e9d30743-bba4-4e60-832e-170e9eb3a63a\",\"name\":\"test-acc-container-pn-to-change\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"deleting\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-change:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-change.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.126176Z\",\"updated_at\":\"2025-11-06T16:27:46.219408552Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-change\"],\"private_network_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1042" + - "1043" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:53 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - c49273ae-6d5e-4794-8bf2-8da86f1278a1 + - 4beae681-e1fd-40af-a6aa-ac74101d0fca status: 200 OK code: 200 - duration: 118.766796ms + duration: 244.73356ms - id: 69 request: proto: HTTP/1.1 @@ -2246,28 +2246,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/fe52bed0-b71c-4350-8059-2ccc7fd60381 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1046 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:47.673388Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1009 + body: "{\"id\":\"fe52bed0-b71c-4350-8059-2ccc7fd60381\",\"name\":\"test-acc-container-pn-to-remove\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"deleting\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-remove:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-remove.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:32.108245Z\",\"updated_at\":\"2025-11-06T16:27:46.248143539Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-remove\"],\"private_network_id\":null,\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1046" + - "1009" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:53 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 3f915886-8153-49c4-9aeb-648ae1eeede5 + - 6bf5287f-7072-4757-8ef4-2deb98268db6 status: 200 OK code: 200 - duration: 119.978ms + duration: 213.170306ms - id: 70 request: proto: HTTP/1.1 @@ -2278,28 +2278,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 - method: GET + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/eb2fda56-d637-445f-9092-ec4ac8a9c2b9 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1080 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"error\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":\"Image was not found in container registry.\", \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:47.834561Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 1035 + body: "{\"id\":\"eb2fda56-d637-445f-9092-ec4ac8a9c2b9\",\"name\":\"test-acc-container-pn-to-stay\",\"namespace_id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"status\":\"deleting\",\"environment_variables\":{},\"min_scale\":0,\"max_scale\":5,\"memory_limit\":2048,\"cpu_limit\":1000,\"timeout\":\"300s\",\"error_message\":null,\"privacy\":\"public\",\"description\":\"\",\"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn/test-acc-container-pn-to-stay:latest\",\"max_concurrency\":50,\"domain_name\":\"tfnsnaughtylumierej7ymhfdn-test-acc-container-pn-to-stay.functions.fnc.fr-par.scw.cloud\",\"protocol\":\"http1\",\"port\":8080,\"secret_environment_variables\":[],\"http_option\":\"enabled\",\"sandbox\":\"v1\",\"local_storage_limit\":1000,\"scaling_option\":{\"concurrent_requests_threshold\":50},\"created_at\":\"2025-11-06T16:27:30.106491Z\",\"updated_at\":\"2025-11-06T16:27:46.235317109Z\",\"ready_at\":null,\"health_check\":{\"failure_threshold\":30,\"interval\":\"10s\",\"tcp\":{}},\"tags\":[\"to-stay\"],\"private_network_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"command\":[],\"args\":[],\"region\":\"fr-par\"}" headers: Content-Length: - - "1080" + - "1035" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:53 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 4230db72-e099-4f49-8678-be1496e9eb2a + - 8f7a6127-a849-421b-a18c-916cbb672571 status: 200 OK code: 200 - duration: 120.072047ms + duration: 214.565058ms - id: 71 request: proto: HTTP/1.1 @@ -2310,28 +2310,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/951236cf-0fe6-4ab4-a67a-0a31d87c335d - method: DELETE + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1012 - body: "{\"id\":\"951236cf-0fe6-4ab4-a67a-0a31d87c335d\", \"name\":\"test-acc-container-pn-c00\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"deleting\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c00:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c00.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:36.899644Z\", \"updated_at\":\"2025-11-04T13:30:53.659482643Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c00\"], \"private_network_id\":null, \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 587 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"ready\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:27.073838Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1012" + - "587" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:53 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - e6180e34-10f9-4038-bb70-b546cee9336d + - 0e3ff824-d851-4d70-a826-3dba8189b58e status: 200 OK code: 200 - duration: 247.103539ms + duration: 85.411628ms - id: 72 request: proto: HTTP/1.1 @@ -2342,28 +2342,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/d43b73b9-204f-44f4-834d-49f10a565084 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1046 - body: "{\"id\":\"d43b73b9-204f-44f4-834d-49f10a565084\", \"name\":\"test-acc-container-pn-c02\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"deleting\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c02:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c02.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.183787Z\", \"updated_at\":\"2025-11-04T13:30:53.666021945Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c02\"], \"private_network_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" + content_length: 593 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"deleting\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:46.547461816Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "1046" + - "593" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:53 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - be52b3cb-fee2-4615-b0d5-0bac9b3ebf65 + - 00c5fea2-d410-4a4c-916b-17812abdaa6f status: 200 OK code: 200 - duration: 252.080514ms + duration: 361.295144ms - id: 73 request: proto: HTTP/1.1 @@ -2374,125 +2374,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/dff7ca1c-d5ce-40c8-8769-8e4f0db82833 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1046 - body: "{\"id\":\"dff7ca1c-d5ce-40c8-8769-8e4f0db82833\", \"name\":\"test-acc-container-pn-c01\", \"namespace_id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"status\":\"deleting\", \"environment_variables\":{}, \"min_scale\":0, \"max_scale\":5, \"memory_limit\":2048, \"cpu_limit\":1000, \"timeout\":\"300s\", \"error_message\":null, \"privacy\":\"public\", \"description\":\"\", \"registry_image\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob/test-acc-container-pn-c01:latest\", \"max_concurrency\":50, \"domain_name\":\"tfnsdreamyhertzdbqctkob-test-acc-container-pn-c01.functions.fnc.fr-par.scw.cloud\", \"protocol\":\"http1\", \"port\":8080, \"secret_environment_variables\":[], \"http_option\":\"enabled\", \"sandbox\":\"v1\", \"local_storage_limit\":1000, \"scaling_option\":{\"concurrent_requests_threshold\":50}, \"created_at\":\"2025-11-04T13:30:39.184572Z\", \"updated_at\":\"2025-11-04T13:30:53.684718530Z\", \"ready_at\":null, \"health_check\":{\"failure_threshold\":30, \"interval\":\"10s\", \"tcp\":{}}, \"tags\":[\"c01\"], \"private_network_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\", \"command\":[], \"args\":[], \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1046" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 13:30:53 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - X-Request-Id: - - 2dd817f0-4c39-4b68-a3d7-564fdf8cecba - status: 200 OK - code: 200 - duration: 253.817861ms -- id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 596 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"ready\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:34.992560Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "596" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 13:30:53 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - X-Request-Id: - - e1621f53-483b-41d9-91aa-908a6ff6f033 - status: 200 OK - code: 200 - duration: 107.280584ms -- id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 602 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"deleting\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:54.014037295Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "602" - Content-Type: - - application/json - Date: - - Tue, 04 Nov 2025 13:30:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - X-Request-Id: - - 0b494140-1d11-4cbc-822b-1431e434488d - status: 200 OK - code: 200 - duration: 406.06957ms -- id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 599 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"deleting\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:54.014037Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 590 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"deleting\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:46.547462Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "599" + - "590" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:54 GMT + - Thu, 06 Nov 2025 16:27:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 64340914-83bc-45f2-b8ec-8027e4956d22 + - 03e567f6-a58c-419c-8abb-15fab73a3e7e status: 200 OK code: 200 - duration: 107.996703ms -- id: 77 + duration: 84.750726ms +- id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -2502,7 +2406,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/350dcdde-e9fb-4104-84bf-251062e6fd91 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/be1f4252-a826-4ca7-901b-068a0ebfd402 method: DELETE response: proto: HTTP/2.0 @@ -2514,15 +2418,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:55 GMT + - Thu, 06 Nov 2025 16:27:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - fcd7df82-2e0f-4464-9c0f-2eea14b399db + - db443f17-e612-44fb-9a13-fb22100222ba status: 204 No Content code: 204 - duration: 1.239080236s -- id: 78 + duration: 1.388480159s +- id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -2532,7 +2436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf9475ab-cb4b-47f8-9719-76659c0284cc + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/acdbc6b7-b7ca-49c6-b242-1a8566007121 method: DELETE response: proto: HTTP/2.0 @@ -2544,15 +2448,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:55 GMT + - Thu, 06 Nov 2025 16:27:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 59fa57a4-eeb4-4a94-b24a-1f76de2d0252 + - f5798d7b-75b4-4ef0-8abe-9bc3508341f0 status: 204 No Content code: 204 - duration: 1.304131049s -- id: 79 + duration: 1.477386567s +- id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -2562,7 +2466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/72a40579-630f-470e-ba29-9178394d609d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ef1ef8d9-d147-46df-97eb-e7cc8df6616d method: DELETE response: proto: HTTP/2.0 @@ -2574,15 +2478,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:55 GMT + - Thu, 06 Nov 2025 16:27:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 8833d268-6187-4a4a-8efa-881aface10fa + - 8be9c4fa-e703-4680-9e7a-e579f087f5a6 status: 204 No Content code: 204 - duration: 230.863096ms -- id: 80 + duration: 231.024363ms +- id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -2592,29 +2496,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 599 - body: "{\"id\":\"51b0c7b8-6da0-4a91-9182-03f4ef34c330\", \"name\":\"tf-ns-dreamy-hertz\", \"environment_variables\":{}, \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"status\":\"deleting\", \"registry_namespace_id\":\"0a8a6cd8-3f63-4364-89c0-d48f442dca31\", \"error_message\":null, \"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsdreamyhertzdbqctkob\", \"description\":\"\", \"secret_environment_variables\":[], \"tags\":[], \"created_at\":\"2025-11-04T13:30:30.753923Z\", \"updated_at\":\"2025-11-04T13:30:54.014037Z\", \"vpc_integration_activated\":true, \"region\":\"fr-par\"}" + content_length: 590 + body: "{\"id\":\"c18ebd34-5f04-4bff-84af-37d6ab6d7d24\",\"name\":\"tf-ns-naughty-lumiere\",\"environment_variables\":{},\"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"status\":\"deleting\",\"registry_namespace_id\":\"0db3a877-b536-4bd4-8122-036af9805938\",\"error_message\":null,\"registry_endpoint\":\"rg.fr-par.scw.cloud/funcscwtfnsnaughtylumierej7ymhfdn\",\"description\":\"\",\"secret_environment_variables\":[],\"tags\":[],\"created_at\":\"2025-11-06T16:27:24.175287Z\",\"updated_at\":\"2025-11-06T16:27:46.547462Z\",\"vpc_integration_activated\":true,\"region\":\"fr-par\"}" headers: Content-Length: - - "599" + - "590" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:30:59 GMT + - Thu, 06 Nov 2025 16:27:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 1270d833-8424-4610-9fda-89958f2281e4 + - 9faf1997-3fac-467c-99af-47b67cba5e10 status: 200 OK code: 200 - duration: 123.703725ms -- id: 81 + duration: 93.327749ms +- id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -2624,7 +2528,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: GET response: proto: HTTP/2.0 @@ -2638,15 +2542,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:31:25 GMT + - Thu, 06 Nov 2025 16:28:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - c06e8c1b-0d48-4a91-b081-7a8bc0ca98d9 + - 73082e1a-081b-471a-91dd-b7432d968c09 status: 404 Not Found code: 404 - duration: 45.911782ms -- id: 82 + duration: 26.058961ms +- id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2656,7 +2560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/namespaces/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: DELETE response: proto: HTTP/2.0 @@ -2670,15 +2574,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:31:25 GMT + - Thu, 06 Nov 2025 16:28:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - cb1414f1-ca99-44d1-a025-8dbb9396166f + - 88a38f79-221c-45d9-a857-f4750a53f4b2 status: 404 Not Found code: 404 - duration: 45.226971ms -- id: 83 + duration: 24.591812ms +- id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -2688,7 +2592,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/51b0c7b8-6da0-4a91-9182-03f4ef34c330 + url: https://api.scaleway.com/containers/v1beta1/regions/fr-par/containers/c18ebd34-5f04-4bff-84af-37d6ab6d7d24 method: DELETE response: proto: HTTP/2.0 @@ -2702,15 +2606,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:31:25 GMT + - Thu, 06 Nov 2025 16:28:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - e9629f45-bc46-4e33-89c9-85ba9230ba39 + - c8e45bcc-cd9e-4e89-9acd-b9df6e30a541 status: 404 Not Found code: 404 - duration: 46.571706ms -- id: 84 + duration: 29.976977ms +- id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -2720,29 +2624,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bf9475ab-cb4b-47f8-9719-76659c0284cc + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/be1f4252-a826-4ca7-901b-068a0ebfd402 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"bf9475ab-cb4b-47f8-9719-76659c0284cc\",\"type\":\"not_found\"}" + body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"be1f4252-a826-4ca7-901b-068a0ebfd402\",\"type\":\"not_found\"}" headers: Content-Length: - "136" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:31:25 GMT + - Thu, 06 Nov 2025 16:28:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - 43290cd2-db33-4c15-868d-c671d72e9e40 + - accabef9-4de3-4f9b-918f-e6d8590c850f status: 404 Not Found code: 404 - duration: 41.812573ms -- id: 85 + duration: 24.048982ms +- id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -2752,25 +2656,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/350dcdde-e9fb-4104-84bf-251062e6fd91 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/acdbc6b7-b7ca-49c6-b242-1a8566007121 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"350dcdde-e9fb-4104-84bf-251062e6fd91\",\"type\":\"not_found\"}" + body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"acdbc6b7-b7ca-49c6-b242-1a8566007121\",\"type\":\"not_found\"}" headers: Content-Length: - "136" Content-Type: - application/json Date: - - Tue, 04 Nov 2025 13:31:25 GMT + - Thu, 06 Nov 2025 16:28:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) X-Request-Id: - - caff25de-e092-4eae-b67a-dd836afff94b + - 3605d123-f5b5-4896-9fde-314212463672 status: 404 Not Found code: 404 - duration: 45.031873ms + duration: 28.83526ms