diff --git a/docs/resources/function.md b/docs/resources/function.md index 1877b50f63..9d3a3da55c 100644 --- a/docs/resources/function.md +++ b/docs/resources/function.md @@ -99,6 +99,9 @@ The following arguments are supported: - `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the project the functions namespace is associated with. +- `private_network_id` (Optional) The ID of the Private Network the function is connected to. + +~> **Important** This feature is currently in beta and requires a namespace with VPC integration activated by setting the `activate_vpc_integration` attribute to `true`. ## Attributes Reference diff --git a/docs/resources/function_namespace.md b/docs/resources/function_namespace.md index fe3c89cd31..309f08183b 100644 --- a/docs/resources/function_namespace.md +++ b/docs/resources/function_namespace.md @@ -40,6 +40,10 @@ The following arguments are supported: - `secret_environment_variables` - (Optional) The secret environment variables of the namespace. +- `activate_vpc_integration` - (Optional) Activates VPC integration for the namespace. Functions of a namespace with VPC integration activated will be able to connect to a Private Network. + +~> **Important** Updates to `activate_vpc_integration` will recreate the namespace. + ## Attributes Reference The `scaleway_function_namespace` resource exports certain attributes once the Functions namespace has been created. These attributes can be referenced in other parts of your Terraform configuration. diff --git a/go.mod b/go.mod index 70ad934c46..3cf4202fe6 100644 --- a/go.mod +++ b/go.mod @@ -28,7 +28,7 @@ require ( github.com/nats-io/jwt/v2 v2.7.4 github.com/nats-io/nats.go v1.38.0 github.com/robfig/cron/v3 v3.0.1 - github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250604134054-a06406d42247 + github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250613133518-6987cd48643b github.com/stretchr/testify v1.10.0 golang.org/x/crypto v0.38.0 gopkg.in/dnaeon/go-vcr.v3 v3.2.0 diff --git a/go.sum b/go.sum index 4439f5b0f6..7b32772228 100644 --- a/go.sum +++ b/go.sum @@ -447,8 +447,8 @@ github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFR github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII= github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250604134054-a06406d42247 h1:wlIvcSpGl3mGDpQmwrZHnYMIlB7Mwx3bhg151LG22Ws= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250604134054-a06406d42247/go.mod h1:qiGzapFyNPFwBBLJ+hTFykKSnU95n1zL64+o1ubmwf0= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250613133518-6987cd48643b h1:7V7T9XzUl+B/6zHeNxyX0DV3OVjCSedA0stHo0BNKZw= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250613133518-6987cd48643b/go.mod h1:zFWiHphneiey3s8HOtAEnGrRlWivNaxW5T6d5Xfco7g= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= diff --git a/internal/acctest/validate_cassettes_test.go b/internal/acctest/validate_cassettes_test.go index 3e91392ce7..80bce6c5d5 100644 --- a/internal/acctest/validate_cassettes_test.go +++ b/internal/acctest/validate_cassettes_test.go @@ -29,6 +29,7 @@ func exceptionsCassettesCases() map[string]struct{} { "../services/secret/testdata/secret-version-type.cassette.yaml": {}, "../services/file/testdata/file-system-invalid-size-granularity-fails.cassette.yaml": {}, "../services/file/testdata/file-system-size-too-small-fails.cassette.yaml": {}, + "../services/function/testdata/function-namespace-vpc-integration.cassette.yaml": {}, } } diff --git a/internal/services/function/function.go b/internal/services/function/function.go index f69cf41f62..a35a550836 100644 --- a/internal/services/function/function.go +++ b/internal/services/function/function.go @@ -14,6 +14,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/cdf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" @@ -170,6 +171,11 @@ func ResourceFunction() *schema.Resource { Computed: true, Description: "The native function domain name.", }, + "private_network_id": { + Type: schema.TypeString, + Optional: true, + Description: "ID of the Private Network the container is connected to", + }, "region": regional.Schema(), "organization_id": account.OrganizationIDSchema(), "project_id": account.ProjectIDSchema(), @@ -214,6 +220,10 @@ func ResourceFunctionCreate(ctx context.Context, d *schema.ResourceData, m any) req.Timeout = &scw.Duration{Seconds: int64(timeout.(int))} } + if pnID, ok := d.GetOk("private_network_id"); ok { + req.PrivateNetworkID = types.ExpandStringPtr(locality.ExpandID(pnID.(string))) + } + f, err := api.CreateFunction(req, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) @@ -324,6 +334,12 @@ func ResourceFunctionRead(ctx context.Context, d *schema.ResourceData, m any) di _ = d.Set("secret_environment_variables", flattenFunctionSecrets(f.SecretEnvironmentVariables)) _ = d.Set("tags", types.FlattenSliceString(f.Tags)) + if f.PrivateNetworkID != nil { + _ = d.Set("private_network_id", regional.NewID(region, types.FlattenStringPtr(f.PrivateNetworkID).(string)).String()) + } else { + _ = d.Set("private_network_id", nil) + } + return diags } @@ -415,6 +431,11 @@ func ResourceFunctionUpdate(ctx context.Context, d *schema.ResourceData, m any) updated = true } + if d.HasChanges("private_network_id") { + req.PrivateNetworkID = types.ExpandUpdatedStringPtr(locality.ExpandID(d.Get("private_network_id"))) + updated = true + } + if updated { _, err = api.UpdateFunction(req, scw.WithContext(ctx)) if err != nil { diff --git a/internal/services/function/function_test.go b/internal/services/function/function_test.go index d348cf4c49..02aa4feec3 100644 --- a/internal/services/function/function_test.go +++ b/internal/services/function/function_test.go @@ -12,6 +12,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/function" + vpcchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpc/testfuncs" ) func TestAccFunction_Basic(t *testing.T) { @@ -410,6 +411,158 @@ func TestAccFunction_Sandbox(t *testing.T) { }) } +func TestAccFunction_PrivateNetwork(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: resource.ComposeTestCheckFunc( + testAccCheckFunctionNamespaceDestroy(tt), + testAccCheckFunctionDestroy(tt), + vpcchecks.CheckPrivateNetworkDestroy(tt), + ), + Steps: []resource.TestStep{ + { + Config: ` + resource scaleway_vpc_private_network pn00 { + name = "test-acc-function-pn-pn00" + } + resource scaleway_vpc_private_network pn01 { + name = "test-acc-function-pn-pn01" + } + + resource scaleway_function_namespace main { + activate_vpc_integration = true + } + + resource scaleway_function f00 { + name = "test-acc-function-pn-00" + namespace_id = scaleway_function_namespace.main.id + privacy = "private" + runtime = "go123" + handler = "Handle" + sandbox = "v1" + private_network_id = scaleway_vpc_private_network.pn00.id + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckFunctionExists(tt, "scaleway_function.f00"), + resource.TestCheckResourceAttr("scaleway_function_namespace.main", "activate_vpc_integration", "true"), + resource.TestCheckResourceAttr("scaleway_function.f00", "sandbox", "v1"), + resource.TestCheckResourceAttrPair("scaleway_function.f00", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), + ), + }, + { + Config: ` + resource scaleway_vpc_private_network pn00 { + name = "test-acc-function-pn-pn00" + } + resource scaleway_vpc_private_network pn01 { + name = "test-acc-function-pn-pn01" + } + + resource scaleway_function_namespace main { + activate_vpc_integration = true + } + + resource scaleway_function f00 { + name = "test-acc-function-pn-f00" + namespace_id = scaleway_function_namespace.main.id + privacy = "private" + runtime = "go123" + handler = "Handle" + sandbox = "v1" + private_network_id = scaleway_vpc_private_network.pn00.id + } + + resource scaleway_function f01 { + name = "test-acc-function-pn-f01" + namespace_id = scaleway_function_namespace.main.id + privacy = "private" + runtime = "go123" + handler = "Handle" + sandbox = "v1" + private_network_id = scaleway_vpc_private_network.pn00.id + } + + resource scaleway_function f02 { + name = "test-acc-function-pn-f02" + namespace_id = scaleway_function_namespace.main.id + privacy = "private" + runtime = "go123" + handler = "Handle" + sandbox = "v1" + private_network_id = scaleway_vpc_private_network.pn00.id + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckFunctionExists(tt, "scaleway_function.f00"), + testAccCheckFunctionExists(tt, "scaleway_function.f01"), + testAccCheckFunctionExists(tt, "scaleway_function.f02"), + resource.TestCheckResourceAttr("scaleway_function.f00", "sandbox", "v1"), + resource.TestCheckResourceAttr("scaleway_function.f01", "sandbox", "v1"), + resource.TestCheckResourceAttr("scaleway_function.f02", "sandbox", "v1"), + resource.TestCheckResourceAttrPair("scaleway_function.f00", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), + resource.TestCheckResourceAttrPair("scaleway_function.f01", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), + resource.TestCheckResourceAttrPair("scaleway_function.f02", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), + ), + }, + { + Config: ` + resource scaleway_vpc_private_network pn00 { + name = "test-acc-function-pn-pn00" + } + resource scaleway_vpc_private_network pn01 { + name = "test-acc-function-pn-pn01" + } + + resource scaleway_function_namespace main { + activate_vpc_integration = true + } + + resource scaleway_function f00 { + name = "test-acc-function-pn-f00" + namespace_id = scaleway_function_namespace.main.id + privacy = "private" + runtime = "go123" + handler = "Handle" + sandbox = "v1" + } + + resource scaleway_function f01 { + name = "test-acc-function-pn-f01" + namespace_id = scaleway_function_namespace.main.id + privacy = "private" + runtime = "go123" + handler = "Handle" + sandbox = "v1" + private_network_id = scaleway_vpc_private_network.pn01.id + } + + resource scaleway_function f02 { + name = "test-acc-function-pn-02" + namespace_id = scaleway_function_namespace.main.id + privacy = "private" + runtime = "go123" + handler = "Handle" + sandbox = "v1" + private_network_id = scaleway_vpc_private_network.pn00.id + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckFunctionExists(tt, "scaleway_function.f00"), + testAccCheckFunctionExists(tt, "scaleway_function.f01"), + testAccCheckFunctionExists(tt, "scaleway_function.f02"), + resource.TestCheckResourceAttr("scaleway_function.f00", "private_network_id", ""), + resource.TestCheckResourceAttrPair("scaleway_function.f01", "private_network_id", "scaleway_vpc_private_network.pn01", "id"), + resource.TestCheckResourceAttrPair("scaleway_function.f02", "private_network_id", "scaleway_vpc_private_network.pn00", "id"), + ), + }, + }, + }) +} + func testAccCheckFunctionExists(tt *acctest.TestTools, n string) resource.TestCheckFunc { return func(state *terraform.State) error { rs, ok := state.RootModule().Resources[n] @@ -468,7 +621,7 @@ func passwordMatchHash(parent string, key string, password string) resource.Test return func(state *terraform.State) error { rs, ok := state.RootModule().Resources[parent] if !ok { - return fmt.Errorf("resource container not found: %s", parent) + return fmt.Errorf("resource not found: %s", parent) } match, err := argon2id.ComparePasswordAndHash(password, rs.Primary.Attributes[key]) diff --git a/internal/services/function/namespace.go b/internal/services/function/namespace.go index 7202e85234..fd90d1eaac 100644 --- a/internal/services/function/namespace.go +++ b/internal/services/function/namespace.go @@ -86,6 +86,13 @@ func ResourceNamespace() *schema.Resource { Computed: true, Description: "The ID of the registry namespace", }, + "activate_vpc_integration": { + Type: schema.TypeBool, + ForceNew: true, + Optional: true, + Default: false, + Description: "Activate VPC integration for the namespace", + }, "region": regional.Schema(), "organization_id": account.OrganizationIDSchema(), "project_id": account.ProjectIDSchema(), @@ -113,6 +120,10 @@ func ResourceFunctionNamespaceCreate(ctx context.Context, d *schema.ResourceData createReq.Tags = types.ExpandStrings(rawTag) } + if activateVPC, ok := d.GetOk("activate_vpc_integration"); ok { + createReq.ActivateVpcIntegration = activateVPC.(bool) + } + ns, err := api.CreateNamespace(createReq, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) @@ -155,6 +166,7 @@ func ResourceFunctionNamespaceRead(ctx context.Context, d *schema.ResourceData, _ = d.Set("registry_endpoint", ns.RegistryEndpoint) _ = d.Set("registry_namespace_id", ns.RegistryNamespaceID) _ = d.Set("secret_environment_variables", flattenFunctionSecrets(ns.SecretEnvironmentVariables)) + _ = d.Set("activate_vpc_integration", types.FlattenBoolPtr(ns.VpcIntegrationActivated)) //nolint:staticcheck return nil } diff --git a/internal/services/function/namespace_test.go b/internal/services/function/namespace_test.go index 47506be438..1c29bc1662 100644 --- a/internal/services/function/namespace_test.go +++ b/internal/services/function/namespace_test.go @@ -2,6 +2,7 @@ package function_test import ( "fmt" + "regexp" "testing" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" @@ -10,6 +11,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/function" + vpcchecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/vpc/testfuncs" ) func TestAccFunctionNamespace_Basic(t *testing.T) { @@ -179,6 +181,87 @@ func TestAccFunctionNamespace_EnvironmentVariables(t *testing.T) { }) } +func TestAccFunctionNamespace_VPCIntegration(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + namespaceID := "" + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: resource.ComposeTestCheckFunc( + testAccCheckFunctionNamespaceDestroy(tt), + testAccCheckFunctionDestroy(tt), + vpcchecks.CheckPrivateNetworkDestroy(tt), + ), + Steps: []resource.TestStep{ + { + Config: ` + resource scaleway_vpc_private_network main {} + + resource scaleway_function_namespace main {} + + resource scaleway_function main { + namespace_id = scaleway_function_namespace.main.id + sandbox = "v1" + privacy = "private" + runtime = "go123" + handler = "Handle" + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckFunctionNamespaceExists(tt, "scaleway_function_namespace.main"), + resource.TestCheckResourceAttr("scaleway_function_namespace.main", "activate_vpc_integration", "false"), + acctest.CheckResourceIDPersisted("scaleway_function_namespace.main", &namespaceID), + ), + }, + { + Config: ` + resource scaleway_vpc_private_network main {} + + resource scaleway_function_namespace main {} + + resource scaleway_function main { + namespace_id = scaleway_function_namespace.main.id + privacy = "private" + sandbox = "v1" + runtime = "go123" + handler = "Handle" + private_network_id = scaleway_vpc_private_network.main.id + } + `, + ExpectError: regexp.MustCompile("Application can't be attached to private network, vpc integration must be activated on its parent namespace"), + }, + { + Config: ` + resource scaleway_vpc_private_network main {} + + resource scaleway_function_namespace main { + activate_vpc_integration = true + } + + resource scaleway_function main { + namespace_id = scaleway_function_namespace.main.id + sandbox = "v1" + privacy = "private" + runtime = "go123" + handler = "Handle" + private_network_id = scaleway_vpc_private_network.main.id + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckFunctionNamespaceExists(tt, "scaleway_function_namespace.main"), + testAccCheckFunctionExists(tt, "scaleway_function.main"), + resource.TestCheckResourceAttr("scaleway_function_namespace.main", "activate_vpc_integration", "true"), + resource.TestCheckResourceAttrPair("scaleway_function.main", "private_network_id", "scaleway_vpc_private_network.main", "id"), + acctest.CheckResourceIDChanged("scaleway_function_namespace.main", &namespaceID), + ), + }, + }, + }) +} + func testAccCheckFunctionNamespaceExists(tt *acctest.TestTools, n string) resource.TestCheckFunc { return func(state *terraform.State) error { rs, ok := state.RootModule().Resources[n] diff --git a/internal/services/function/testdata/function-namespace-vpc-integration.cassette.yaml b/internal/services/function/testdata/function-namespace-vpc-integration.cassette.yaml new file mode 100644 index 0000000000..e97add05d3 --- /dev/null +++ b/internal/services/function/testdata/function-namespace-vpc-integration.cassette.yaml @@ -0,0 +1,2708 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 191 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-func-musing-leavitt","environment_variables":{},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","secret_environment_variables":[],"tags":null,"activate_vpc_integration":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 508 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069127732Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:30:24.069127732Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "508" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb7690f3-5253-4527-ae0f-43e65e168250 + status: 200 OK + code: 200 + duration: 677.762471ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 502 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:30:24.069128Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "502" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be86184e-3c1b-4cf2-b692-68a2c1f16afa + status: 200 OK + code: 200 + duration: 49.597251ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-pn-gifted-engelbart","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:23.630403Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"238100f6-0246-441a-ae44-2c77af88ac9c","name":"tf-pn-gifted-engelbart","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T11:30:23.630403Z","id":"07330e73-1eac-4664-8601-56a0732618e2","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T11:30:23.630403Z","id":"e86e1991-fbae-49a2-83ac-d8ac13f1d8e6","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d325::/64","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a461cdf-c2e8-4de9-aafc-2a6b0042c345 + status: 200 OK + code: 200 + duration: 768.861354ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/238100f6-0246-441a-ae44-2c77af88ac9c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:23.630403Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"238100f6-0246-441a-ae44-2c77af88ac9c","name":"tf-pn-gifted-engelbart","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T11:30:23.630403Z","id":"07330e73-1eac-4664-8601-56a0732618e2","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T11:30:23.630403Z","id":"e86e1991-fbae-49a2-83ac-d8ac13f1d8e6","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d325::/64","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 635c6bab-137e-4b71-8fe6-ac4ed0394aee + status: 200 OK + code: 200 + duration: 36.694997ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 592 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:30:27.312773Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "592" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b0cda1c-e72d-4025-a769-db8c59a27bbe + status: 200 OK + code: 200 + duration: 51.563167ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 592 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:30:27.312773Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "592" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f58d0d54-3182-40b9-875e-4a8a8043526b + status: 200 OK + code: 200 + duration: 53.378452ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 592 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:30:27.312773Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "592" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d62ee746-2948-460d-960a-30b25bdd46da + status: 200 OK + code: 200 + duration: 44.511101ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 592 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:30:27.312773Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "592" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 049961f3-845b-4231-951b-c7e7533f1dbe + status: 200 OK + code: 200 + duration: 45.087121ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 592 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:30:27.312773Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "592" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dd9c9382-3daf-4ba2-8f84-a83defb452e9 + status: 200 OK + code: 200 + duration: 461.79683ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 590 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:30:53.930494Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f8e6fd1-cdb5-4f62-8a63-f8dfc59c5df0 + status: 200 OK + code: 200 + duration: 48.620508ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 590 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:30:53.930494Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d7378a4-b9e0-4ec8-85d4-1d7362853f71 + status: 200 OK + code: 200 + duration: 51.14758ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 307 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"go123","memory_limit":256,"handler":"Handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"v1","tags":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 734 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382401Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:55.173382401Z"}' + headers: + Content-Length: + - "734" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a0dcb67b-b8fc-4868-821d-d4481fd9dd12 + status: 200 OK + code: 200 + duration: 287.88431ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:55.173382Z"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 64a2d2bc-9ade-4be3-9262-0e84deef441b + status: 200 OK + code: 200 + duration: 44.042593ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:55.173382Z"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1723d974-e800-4080-adb5-761962ee2217 + status: 200 OK + code: 200 + duration: 121.787712ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 590 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:30:53.930494Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8185839-3033-4314-8631-c796228f3d18 + status: 200 OK + code: 200 + duration: 34.737761ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 590 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:30:53.930494Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2af2e928-2977-446e-8b0c-5ada248fecf2 + status: 200 OK + code: 200 + duration: 42.596422ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/238100f6-0246-441a-ae44-2c77af88ac9c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:23.630403Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"238100f6-0246-441a-ae44-2c77af88ac9c","name":"tf-pn-gifted-engelbart","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T11:30:23.630403Z","id":"07330e73-1eac-4664-8601-56a0732618e2","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T11:30:23.630403Z","id":"e86e1991-fbae-49a2-83ac-d8ac13f1d8e6","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d325::/64","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0498bd9-f75f-40bd-b16c-8d8adc1428f5 + status: 200 OK + code: 200 + duration: 84.631185ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:55.173382Z"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26d77f7c-c033-4b0e-b2a3-ca793ba993bc + status: 200 OK + code: 200 + duration: 95.415663ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 590 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:30:53.930494Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cebebc38-8cfa-414a-b111-b9c38ed3ef88 + status: 200 OK + code: 200 + duration: 130.859501ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/238100f6-0246-441a-ae44-2c77af88ac9c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:23.630403Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"238100f6-0246-441a-ae44-2c77af88ac9c","name":"tf-pn-gifted-engelbart","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T11:30:23.630403Z","id":"07330e73-1eac-4664-8601-56a0732618e2","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T11:30:23.630403Z","id":"e86e1991-fbae-49a2-83ac-d8ac13f1d8e6","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d325::/64","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d32a89cd-e608-4737-bad9-8e6fd3ede1dc + status: 200 OK + code: 200 + duration: 148.007566ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:55.173382Z"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e48a7faf-5dc3-4cd5-aaac-ccacfacd12f8 + status: 200 OK + code: 200 + duration: 44.866788ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:55.173382Z"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aec4827e-50b6-44a6-b495-0bda0bf3b617 + status: 200 OK + code: 200 + duration: 65.069285ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 217 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"runtime":"unknown_runtime","privacy":"unknown_privacy","secret_environment_variables":null,"http_option":"unknown_http_option","sandbox":"unknown_sandbox","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 121 + uncompressed: false + body: '{"message":"Application can''t be attached to private network, vpc integration must be activated on its parent namespace"}' + headers: + Content-Length: + - "121" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de7f23b5-6a57-4b20-ae67-e329b161e02d + status: 400 Bad Request + code: 400 + duration: 41.274475ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 590 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:30:53.930494Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ef925be-4358-4d3c-ac89-f51984e07694 + status: 200 OK + code: 200 + duration: 43.825524ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/238100f6-0246-441a-ae44-2c77af88ac9c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:23.630403Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"238100f6-0246-441a-ae44-2c77af88ac9c","name":"tf-pn-gifted-engelbart","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T11:30:23.630403Z","id":"07330e73-1eac-4664-8601-56a0732618e2","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T11:30:23.630403Z","id":"e86e1991-fbae-49a2-83ac-d8ac13f1d8e6","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d325::/64","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 95968cb6-0c39-48b4-bbf7-3975a6b36052 + status: 200 OK + code: 200 + duration: 91.853985ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:55.173382Z"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3cf9fef-0131-47a8-ab45-e6003802d95d + status: 200 OK + code: 200 + duration: 98.614252ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:55.173382Z"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:30:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca3b17bf-c27e-427a-8846-d8d769b97497 + status: 200 OK + code: 200 + duration: 54.619554ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/8b7ffd77-ab03-4783-9eb9-d0576bc19785 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 732 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:30:55.173382Z","description":"","domain_name":"tffuncmusingleavitt8rgde362-tf-func-crazy-brahmagupta.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"8b7ffd77-ab03-4783-9eb9-d0576bc19785","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-crazy-brahmagupta","namespace_id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"deleting","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:30:59.923814407Z"}' + headers: + Content-Length: + - "732" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ff7e9c1-cdd9-4437-b20d-76f51b453fee + status: 200 OK + code: 200 + duration: 150.969589ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 590 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:30:53.930494Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "590" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8dec9b61-94ae-4cc8-a373-37505604ba26 + status: 200 OK + code: 200 + duration: 56.836511ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 596 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T11:31:00.126077874Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "596" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b2b9ab6-551c-41ee-bc05-b8e76c55ffe4 + status: 200 OK + code: 200 + duration: 166.158952ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 593 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:24.069128Z","description":"","environment_variables":{},"error_message":null,"id":"a3a62ba2-9c10-4956-bc64-7890ea34c61c","name":"tf-func-musing-leavitt","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncmusingleavitt8rgde362","registry_namespace_id":"e4c8054f-7929-4f22-aa11-ff1b77c32d6c","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T11:31:00.126078Z","vpc_integration_activated":false}' + headers: + Content-Length: + - "593" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49d30e5f-1c22-46e6-9117-fcd7e93bbd52 + status: 200 OK + code: 200 + duration: 48.353143ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/a3a62ba2-9c10-4956-bc64-7890ea34c61c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 37 + uncompressed: false + body: '{"message":"Namespace was not found"}' + headers: + Content-Length: + - "37" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ae152f2-3bb8-40b7-84cb-2a794b15c33d + status: 404 Not Found + code: 404 + duration: 24.435295ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 188 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-func-sleepy-hugle","environment_variables":{},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","secret_environment_variables":[],"tags":null,"activate_vpc_integration":true}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 505 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799505775Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:31:30.799505775Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "505" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc22bdf7-9b2f-47fa-b37c-f32976f9854d + status: 200 OK + code: 200 + duration: 219.151852ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 499 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T11:31:30.799506Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "499" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5140774b-44ea-4e73-941e-39278006eec7 + status: 200 OK + code: 200 + duration: 54.997513ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 585 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncsleepyhugletrrejwtv","registry_namespace_id":"b5d3216d-beee-4dea-970c-5413a1943dd7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:31:32.550112Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af16b16f-ec29-4b24-91cd-28a0567bd56b + status: 200 OK + code: 200 + duration: 53.228475ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 585 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncsleepyhugletrrejwtv","registry_namespace_id":"b5d3216d-beee-4dea-970c-5413a1943dd7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:31:32.550112Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3892e617-a510-49d6-b81b-468642fb2bc2 + status: 200 OK + code: 200 + duration: 55.32049ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 360 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-func-lucid-pare","namespace_id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"go123","memory_limit":256,"handler":"Handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"v1","tags":null,"private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 752 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:31:36.302087682Z","description":"","domain_name":"tffuncsleepyhugletrrejwtv-tf-func-lucid-pare.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-lucid-pare","namespace_id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","privacy":"private","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:31:36.302087682Z"}' + headers: + Content-Length: + - "752" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d4691cf-ca92-4791-bc02-cb2564706c42 + status: 200 OK + code: 200 + duration: 322.175461ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 746 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:31:36.302088Z","description":"","domain_name":"tffuncsleepyhugletrrejwtv-tf-func-lucid-pare.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-lucid-pare","namespace_id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","privacy":"private","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:31:36.302088Z"}' + headers: + Content-Length: + - "746" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c4cd1fda-3db7-4da4-972b-923ae4acf52f + status: 200 OK + code: 200 + duration: 49.693453ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 746 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:31:36.302088Z","description":"","domain_name":"tffuncsleepyhugletrrejwtv-tf-func-lucid-pare.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-lucid-pare","namespace_id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","privacy":"private","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:31:36.302088Z"}' + headers: + Content-Length: + - "746" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4800167c-aa74-4a7a-906b-a2e1e0ac661d + status: 200 OK + code: 200 + duration: 54.52832ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 585 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncsleepyhugletrrejwtv","registry_namespace_id":"b5d3216d-beee-4dea-970c-5413a1943dd7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:31:32.550112Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da31e1cc-bdb6-417f-9939-bb2313505463 + status: 200 OK + code: 200 + duration: 43.870858ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 746 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:31:36.302088Z","description":"","domain_name":"tffuncsleepyhugletrrejwtv-tf-func-lucid-pare.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-lucid-pare","namespace_id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","privacy":"private","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:31:36.302088Z"}' + headers: + Content-Length: + - "746" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d57c901-4cc0-4823-baad-ae4cb466b20f + status: 200 OK + code: 200 + duration: 48.448574ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/238100f6-0246-441a-ae44-2c77af88ac9c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-06-16T11:30:23.630403Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"238100f6-0246-441a-ae44-2c77af88ac9c","name":"tf-pn-gifted-engelbart","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T11:30:23.630403Z","id":"07330e73-1eac-4664-8601-56a0732618e2","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T11:30:23.630403Z","id":"e86e1991-fbae-49a2-83ac-d8ac13f1d8e6","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d325::/64","updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T11:30:23.630403Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 656d9b17-fb39-40a4-b52e-8c0f91ef3b7f + status: 200 OK + code: 200 + duration: 29.277043ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 585 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncsleepyhugletrrejwtv","registry_namespace_id":"b5d3216d-beee-4dea-970c-5413a1943dd7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:31:32.550112Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 497d3c07-2818-476c-ace7-1bb732503fb5 + status: 200 OK + code: 200 + duration: 70.994974ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 746 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:31:36.302088Z","description":"","domain_name":"tffuncsleepyhugletrrejwtv-tf-func-lucid-pare.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-lucid-pare","namespace_id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","privacy":"private","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:31:36.302088Z"}' + headers: + Content-Length: + - "746" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 425757d5-3687-413b-82a0-24c97e0a05e8 + status: 200 OK + code: 200 + duration: 59.844209ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 746 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:31:36.302088Z","description":"","domain_name":"tffuncsleepyhugletrrejwtv-tf-func-lucid-pare.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-lucid-pare","namespace_id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","privacy":"private","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:31:36.302088Z"}' + headers: + Content-Length: + - "746" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7a9ce7b-780f-4ead-89fc-63423468b13f + status: 200 OK + code: 200 + duration: 56.100616ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 750 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T11:31:36.302088Z","description":"","domain_name":"tffuncsleepyhugletrrejwtv-tf-func-lucid-pare.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a","max_scale":20,"memory_limit":256,"min_scale":0,"name":"tf-func-lucid-pare","namespace_id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","privacy":"private","private_network_id":"238100f6-0246-441a-ae44-2c77af88ac9c","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"deleting","tags":[],"timeout":"300s","updated_at":"2025-06-16T11:31:38.632097496Z"}' + headers: + Content-Length: + - "750" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 534dde57-8093-42b8-b740-75e92bef3105 + status: 200 OK + code: 200 + duration: 174.557325ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 585 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncsleepyhugletrrejwtv","registry_namespace_id":"b5d3216d-beee-4dea-970c-5413a1943dd7","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T11:31:32.550112Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51c0f871-8596-45c8-b0fb-d339adcf0c58 + status: 200 OK + code: 200 + duration: 49.164107ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 591 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncsleepyhugletrrejwtv","registry_namespace_id":"b5d3216d-beee-4dea-970c-5413a1943dd7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T11:31:38.845421842Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "591" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89a35560-e5e6-43fb-bb29-d8f2ee281208 + status: 200 OK + code: 200 + duration: 230.798585ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 588 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncsleepyhugletrrejwtv","registry_namespace_id":"b5d3216d-beee-4dea-970c-5413a1943dd7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T11:31:38.845422Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "588" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb604293-7cd4-4293-ae9a-74bf64fe6edf + status: 200 OK + code: 200 + duration: 44.700516ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/238100f6-0246-441a-ae44-2c77af88ac9c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a22bf63b-5e4d-44bf-ab6e-3ce9ae67e378 + status: 204 No Content + code: 204 + duration: 1.242246725s + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 588 + uncompressed: false + body: '{"created_at":"2025-06-16T11:31:30.799506Z","description":"","environment_variables":{},"error_message":null,"id":"1c7ae062-389f-4da9-9a4c-6e79cb932275","name":"tf-func-sleepy-hugle","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffuncsleepyhugletrrejwtv","registry_namespace_id":"b5d3216d-beee-4dea-970c-5413a1943dd7","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T11:31:38.845422Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "588" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:31:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6bb42c1a-ac05-46f9-aee2-f97b184ae239 + status: 200 OK + code: 200 + duration: 45.869023ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 37 + uncompressed: false + body: '{"message":"Namespace was not found"}' + headers: + Content-Length: + - "37" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:32:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bcafd6ec-9f57-4927-b110-385d1b8611fe + status: 404 Not Found + code: 404 + duration: 23.842054ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/1c7ae062-389f-4da9-9a4c-6e79cb932275 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 37 + uncompressed: false + body: '{"message":"Namespace was not found"}' + headers: + Content-Length: + - "37" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:32:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23475c5f-fcaf-4e3f-8baf-05f1abdcfe55 + status: 404 Not Found + code: 404 + duration: 29.204495ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/cb2d93e7-79fd-4d69-b867-26ab4b0b5d1a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 36 + uncompressed: false + body: '{"message":"Function was not found"}' + headers: + Content-Length: + - "36" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:32:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7fdd6fbd-2954-417b-9a16-9f71afd02b84 + status: 404 Not Found + code: 404 + duration: 103.053737ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/238100f6-0246-441a-ae44-2c77af88ac9c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"private_network","resource_id":"238100f6-0246-441a-ae44-2c77af88ac9c","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 11:32:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f18590e5-b293-4412-86c9-aae812d952c8 + status: 404 Not Found + code: 404 + duration: 28.964255ms diff --git a/internal/services/function/testdata/function-private-network.cassette.yaml b/internal/services/function/testdata/function-private-network.cassette.yaml new file mode 100644 index 0000000000..49688d5e89 --- /dev/null +++ b/internal/services/function/testdata/function-private-network.cassette.yaml @@ -0,0 +1,4478 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 185 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-func-kind-buck","environment_variables":{},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","secret_environment_variables":[],"tags":null,"activate_vpc_integration":true}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 502 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224353568Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T16:32:29.224353568Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "502" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78b0c751-8cf0-45f0-8148-79580747022a + status: 200 OK + code: 200 + duration: 382.726304ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 496 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"","registry_namespace_id":"","secret_environment_variables":[],"status":"pending","tags":[],"updated_at":"2025-06-16T16:32:29.224354Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "496" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a79e36d-96cc-436c-a79b-1f2a69035cad + status: 200 OK + code: 200 + duration: 53.41771ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 155 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-acc-function-pn-pn01","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1070 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.056273Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","name":"test-acc-function-pn-pn01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.056273Z","id":"81747cba-53fd-4399-828c-fbadd1b1faf3","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.4.0/22","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.056273Z","id":"e1a95737-170c-4783-9297-8710b1350a1a","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d0b8::/64","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1070" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 575c3393-95a7-420b-9207-e5e3afa0e44d + status: 200 OK + code: 200 + duration: 747.666056ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1070 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.056273Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","name":"test-acc-function-pn-pn01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.056273Z","id":"81747cba-53fd-4399-828c-fbadd1b1faf3","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.4.0/22","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.056273Z","id":"e1a95737-170c-4783-9297-8710b1350a1a","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d0b8::/64","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1070" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dbf47ba2-7a7b-40d6-92b7-caa8f4f9361d + status: 200 OK + code: 200 + duration: 28.662889ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 155 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-acc-function-pn-pn00","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1071 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.135893Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","name":"test-acc-function-pn-pn00","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.135893Z","id":"9b81f242-1f9d-48b8-b259-99aa33f49cea","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.135893Z","id":"61b2717f-432b-4be8-9795-cef5602bdf3c","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:411f::/64","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e1f72830-04a5-4a04-bcd3-e086b8256d38 + status: 200 OK + code: 200 + duration: 821.945346ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4a00f5a-5222-43fb-9fd2-7dae459ef2a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1071 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.135893Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","name":"test-acc-function-pn-pn00","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.135893Z","id":"9b81f242-1f9d-48b8-b259-99aa33f49cea","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.135893Z","id":"61b2717f-432b-4be8-9795-cef5602bdf3c","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:411f::/64","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e06dfcf-5913-485c-a0a1-804a60b9a987 + status: 200 OK + code: 200 + duration: 76.937514ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 579 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T16:32:32.884625Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "579" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5b43d37-ee6c-4774-8963-6dba2d7fb390 + status: 200 OK + code: 200 + duration: 47.30149ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 579 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T16:32:32.884625Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "579" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0bfb9bc-4792-4f82-99b6-b77d03b4250f + status: 200 OK + code: 200 + duration: 46.283151ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 365 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"go123","memory_limit":256,"handler":"Handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"v1","tags":null,"private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 759 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:34.739489328Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"0ddfbecf-40c1-49e3-b00f-9f23194ed112","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:34.739489328Z"}' + headers: + Content-Length: + - "759" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab9f44c2-ca88-4c0d-90fe-f3ca003d3b27 + status: 200 OK + code: 200 + duration: 363.58077ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0ddfbecf-40c1-49e3-b00f-9f23194ed112 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:34.739489Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"0ddfbecf-40c1-49e3-b00f-9f23194ed112","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:34.739489Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96eedc08-fcc0-406e-a881-d06628b49edb + status: 200 OK + code: 200 + duration: 58.583146ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0ddfbecf-40c1-49e3-b00f-9f23194ed112 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:34.739489Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"0ddfbecf-40c1-49e3-b00f-9f23194ed112","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:34.739489Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7c8dde9e-bc2d-43e9-9eff-eb1ac08d7fc0 + status: 200 OK + code: 200 + duration: 61.063225ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0ddfbecf-40c1-49e3-b00f-9f23194ed112 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:34.739489Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"0ddfbecf-40c1-49e3-b00f-9f23194ed112","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:34.739489Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ebc4ee2-2fa3-4965-8677-545c65ee6d2d + status: 200 OK + code: 200 + duration: 51.138496ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 579 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T16:32:32.884625Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "579" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40e9cc67-60e5-43e4-ac64-439a4b98d3ea + status: 200 OK + code: 200 + duration: 46.248264ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4a00f5a-5222-43fb-9fd2-7dae459ef2a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1071 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.135893Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","name":"test-acc-function-pn-pn00","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.135893Z","id":"9b81f242-1f9d-48b8-b259-99aa33f49cea","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.135893Z","id":"61b2717f-432b-4be8-9795-cef5602bdf3c","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:411f::/64","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a05674d-c144-46d2-b4e7-96cf623d4857 + status: 200 OK + code: 200 + duration: 69.667912ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1070 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.056273Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","name":"test-acc-function-pn-pn01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.056273Z","id":"81747cba-53fd-4399-828c-fbadd1b1faf3","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.4.0/22","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.056273Z","id":"e1a95737-170c-4783-9297-8710b1350a1a","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d0b8::/64","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1070" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b48e9b82-42de-4e85-9afa-b5bc6acbcfce + status: 200 OK + code: 200 + duration: 72.740844ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0ddfbecf-40c1-49e3-b00f-9f23194ed112 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:34.739489Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"0ddfbecf-40c1-49e3-b00f-9f23194ed112","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:34.739489Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b14411b-067b-4968-855a-da5d9ab5f8ec + status: 200 OK + code: 200 + duration: 47.769508ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1070 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.056273Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","name":"test-acc-function-pn-pn01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.056273Z","id":"81747cba-53fd-4399-828c-fbadd1b1faf3","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.4.0/22","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.056273Z","id":"e1a95737-170c-4783-9297-8710b1350a1a","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d0b8::/64","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1070" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26586706-7ad4-410d-8246-e3a93d68b705 + status: 200 OK + code: 200 + duration: 38.257601ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4a00f5a-5222-43fb-9fd2-7dae459ef2a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1071 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.135893Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","name":"test-acc-function-pn-pn00","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.135893Z","id":"9b81f242-1f9d-48b8-b259-99aa33f49cea","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.135893Z","id":"61b2717f-432b-4be8-9795-cef5602bdf3c","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:411f::/64","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c0a68b17-dbad-412f-9fc3-806c3deefbba + status: 200 OK + code: 200 + duration: 37.410953ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 579 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T16:32:32.884625Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "579" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1743d862-cf61-4b14-a82b-d582e30c6760 + status: 200 OK + code: 200 + duration: 49.335354ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0ddfbecf-40c1-49e3-b00f-9f23194ed112 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:34.739489Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"0ddfbecf-40c1-49e3-b00f-9f23194ed112","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:34.739489Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fd5f2533-e3da-4285-a56b-ad9077a8f900 + status: 200 OK + code: 200 + duration: 55.178492ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0ddfbecf-40c1-49e3-b00f-9f23194ed112 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:34.739489Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"0ddfbecf-40c1-49e3-b00f-9f23194ed112","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:34.739489Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a957dea8-50da-40b2-8cce-4be2e839d12f + status: 200 OK + code: 200 + duration: 49.762645ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/0ddfbecf-40c1-49e3-b00f-9f23194ed112 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 757 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:34.739489Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"0ddfbecf-40c1-49e3-b00f-9f23194ed112","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"deleting","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:37.718823709Z"}' + headers: + Content-Length: + - "757" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a399d664-467e-4079-8985-859d00e69318 + status: 200 OK + code: 200 + duration: 217.402825ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 366 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"go123","memory_limit":256,"handler":"Handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"v1","tags":null,"private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 761 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.119280717Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"7686b60e-d807-40ab-a415-e70edcf09bc2","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.119280717Z"}' + headers: + Content-Length: + - "761" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8bef7307-fd6d-4391-aa03-a08000c6ad7d + status: 200 OK + code: 200 + duration: 587.828569ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 366 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"go123","memory_limit":256,"handler":"Handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"v1","tags":null,"private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 761 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121174792Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.121174792Z"}' + headers: + Content-Length: + - "761" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b2c9259-dc67-4ee7-8c60-e27a98c01792 + status: 200 OK + code: 200 + duration: 596.681631ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/7686b60e-d807-40ab-a415-e70edcf09bc2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.119281Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"7686b60e-d807-40ab-a415-e70edcf09bc2","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.119281Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 951f1b4e-5078-49e1-9e64-a81aa2069df7 + status: 200 OK + code: 200 + duration: 52.23953ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.121175Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 742608c2-f006-495f-9394-04404c78a06b + status: 200 OK + code: 200 + duration: 46.781836ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/7686b60e-d807-40ab-a415-e70edcf09bc2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.119281Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"7686b60e-d807-40ab-a415-e70edcf09bc2","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.119281Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f2c41d8-8e52-4a40-b7ae-547c9b906f6f + status: 200 OK + code: 200 + duration: 55.72167ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 366 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"go123","memory_limit":256,"handler":"Handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"v1","tags":null,"private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 761 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239982578Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.239982578Z"}' + headers: + Content-Length: + - "761" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b77811f3-721a-4c06-ace2-6580f8685ca7 + status: 200 OK + code: 200 + duration: 430.300752ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.121175Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 92a94601-b58c-4c5b-ab29-b0e49d23554b + status: 200 OK + code: 200 + duration: 91.248039ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.239983Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2a92832-1bf1-4176-b070-a0efd56b2fc4 + status: 200 OK + code: 200 + duration: 48.721453ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.239983Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0458faa6-3651-4563-9b9e-3a861c39863e + status: 200 OK + code: 200 + duration: 151.497199ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.239983Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4535fa3-8308-478b-8a26-67997a937405 + status: 200 OK + code: 200 + duration: 44.859781ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.121175Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e3a54dc0-e429-4c8a-bf13-7e03a3680658 + status: 200 OK + code: 200 + duration: 62.557578ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/7686b60e-d807-40ab-a415-e70edcf09bc2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.119281Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"7686b60e-d807-40ab-a415-e70edcf09bc2","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.119281Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39e384a3-fad5-4a59-a86b-86dec1d72a01 + status: 200 OK + code: 200 + duration: 93.237199ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4a00f5a-5222-43fb-9fd2-7dae459ef2a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1071 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.135893Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","name":"test-acc-function-pn-pn00","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.135893Z","id":"9b81f242-1f9d-48b8-b259-99aa33f49cea","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.135893Z","id":"61b2717f-432b-4be8-9795-cef5602bdf3c","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:411f::/64","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9bd80484-6044-4990-8d96-8f3470624486 + status: 200 OK + code: 200 + duration: 29.897133ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1070 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.056273Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","name":"test-acc-function-pn-pn01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.056273Z","id":"81747cba-53fd-4399-828c-fbadd1b1faf3","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.4.0/22","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.056273Z","id":"e1a95737-170c-4783-9297-8710b1350a1a","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d0b8::/64","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1070" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - afc105df-1add-44a7-bb2e-088d1fa62775 + status: 200 OK + code: 200 + duration: 31.928713ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 579 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T16:32:32.884625Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "579" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e795516-3ed3-4a78-8628-1cb52037a9f9 + status: 200 OK + code: 200 + duration: 46.680466ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.239983Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f2905e2-6b54-45f6-949e-c1e54bdd715b + status: 200 OK + code: 200 + duration: 56.492535ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/7686b60e-d807-40ab-a415-e70edcf09bc2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.119281Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"7686b60e-d807-40ab-a415-e70edcf09bc2","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.119281Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d52d1f8-1af0-4b03-a7fe-5503a902fe83 + status: 200 OK + code: 200 + duration: 90.533539ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.121175Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c383799-7126-413d-8b8a-4923604d7a30 + status: 200 OK + code: 200 + duration: 130.576998ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 579 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T16:32:32.884625Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "579" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1564c858-6c0e-44a4-a8ce-cf3e0b59b6e0 + status: 200 OK + code: 200 + duration: 40.767227ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4a00f5a-5222-43fb-9fd2-7dae459ef2a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1071 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.135893Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","name":"test-acc-function-pn-pn00","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.135893Z","id":"9b81f242-1f9d-48b8-b259-99aa33f49cea","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.135893Z","id":"61b2717f-432b-4be8-9795-cef5602bdf3c","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:411f::/64","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d438faf4-8128-4a12-9207-045f21d1d04c + status: 200 OK + code: 200 + duration: 62.210357ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1070 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.056273Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","name":"test-acc-function-pn-pn01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.056273Z","id":"81747cba-53fd-4399-828c-fbadd1b1faf3","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.4.0/22","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.056273Z","id":"e1a95737-170c-4783-9297-8710b1350a1a","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d0b8::/64","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1070" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 87e65a91-1f9d-4e67-8076-b968eeab5d4b + status: 200 OK + code: 200 + duration: 71.054191ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.239983Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b90c53b8-40fc-42ae-969f-0cb68ac622c1 + status: 200 OK + code: 200 + duration: 57.233244ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/7686b60e-d807-40ab-a415-e70edcf09bc2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.119281Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"7686b60e-d807-40ab-a415-e70edcf09bc2","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.119281Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 369c8fe7-25f3-47c3-a5ca-11a44ac20988 + status: 200 OK + code: 200 + duration: 79.445036ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.121175Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e8ce577b-e3e9-4705-8419-f16191f047f2 + status: 200 OK + code: 200 + duration: 76.421956ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/7686b60e-d807-40ab-a415-e70edcf09bc2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.119281Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"7686b60e-d807-40ab-a415-e70edcf09bc2","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.119281Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b694510-944d-4353-96d6-a8a6b81abb87 + status: 200 OK + code: 200 + duration: 48.318016ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.239983Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 109418f4-3691-4568-bd9a-ecc9e27fa062 + status: 200 OK + code: 200 + duration: 91.886306ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:38.121175Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7df590cd-db43-4f59-b2b8-ddb6d1908afb + status: 200 OK + code: 200 + duration: 93.818248ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/7686b60e-d807-40ab-a415-e70edcf09bc2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 759 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.119281Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"7686b60e-d807-40ab-a415-e70edcf09bc2","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"deleting","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:41.616339669Z"}' + headers: + Content-Length: + - "759" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ed8d0f2-53ed-46a5-aab2-5d88b4a00b7d + status: 200 OK + code: 200 + duration: 105.683538ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 181 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"runtime":"unknown_runtime","privacy":"unknown_privacy","secret_environment_variables":null,"http_option":"unknown_http_option","sandbox":"unknown_sandbox","private_network_id":""}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 724 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"pending","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:41.695723795Z"}' + headers: + Content-Length: + - "724" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a6eb742f-71b6-44b8-8946-29c963c697eb + status: 200 OK + code: 200 + duration: 96.252262ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 217 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"runtime":"unknown_runtime","privacy":"unknown_privacy","secret_environment_variables":null,"http_option":"unknown_http_option","sandbox":"unknown_sandbox","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 758 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"pending","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:41.730833091Z"}' + headers: + Content-Length: + - "758" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e2ee0c7b-9f74-4081-bf3a-b0867655083a + status: 200 OK + code: 200 + duration: 134.045463ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 365 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-acc-function-pn-02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","environment_variables":{},"min_scale":0,"max_scale":20,"runtime":"go123","memory_limit":256,"handler":"Handle","privacy":"private","secret_environment_variables":[],"http_option":"enabled","sandbox":"v1","tags":null,"private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 759 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:42.004093017Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"462bb3a7-301e-44b9-8f69-207cfb9cb94c","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:42.004093017Z"}' + headers: + Content-Length: + - "759" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a72c569-8b0c-4d97-9927-dcd3117ec2f0 + status: 200 OK + code: 200 + duration: 349.175665ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/462bb3a7-301e-44b9-8f69-207cfb9cb94c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:42.004093Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"462bb3a7-301e-44b9-8f69-207cfb9cb94c","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:42.004093Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b9f23df-2e1c-43aa-a494-755e11730993 + status: 200 OK + code: 200 + duration: 65.892953ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/462bb3a7-301e-44b9-8f69-207cfb9cb94c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:42.004093Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"462bb3a7-301e-44b9-8f69-207cfb9cb94c","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:42.004093Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3de708bd-4890-4436-9ccc-7799574ee051 + status: 200 OK + code: 200 + duration: 54.455214ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 721 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"pending","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:41.695724Z"}' + headers: + Content-Length: + - "721" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d518b3db-3914-4712-a4ca-06ee0f237914 + status: 200 OK + code: 200 + duration: 55.377433ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 755 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"pending","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:41.730833Z"}' + headers: + Content-Length: + - "755" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0a3d0933-f532-4d79-9882-29f78775171f + status: 200 OK + code: 200 + duration: 58.483989ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 731 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"internal error","handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:47.501611Z"}' + headers: + Content-Length: + - "731" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd9b6164-2796-4a88-88fd-dd95cf0d8195 + status: 200 OK + code: 200 + duration: 48.551052ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 765 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"internal error","handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:47.671624Z"}' + headers: + Content-Length: + - "765" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c201241b-5978-40ad-aa97-4ca1bd92e15e + status: 200 OK + code: 200 + duration: 78.34392ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 731 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"internal error","handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:47.501611Z"}' + headers: + Content-Length: + - "731" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 80f27668-67a6-4279-b6ad-0ea5a1169829 + status: 200 OK + code: 200 + duration: 61.190174ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 765 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"internal error","handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:47.671624Z"}' + headers: + Content-Length: + - "765" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cc83aa25-e886-416f-9873-0e2c72dda9d0 + status: 200 OK + code: 200 + duration: 52.085801ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/462bb3a7-301e-44b9-8f69-207cfb9cb94c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:42.004093Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"462bb3a7-301e-44b9-8f69-207cfb9cb94c","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:42.004093Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab19d010-5af5-4e41-aec6-da7c1a96deca + status: 200 OK + code: 200 + duration: 68.684446ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1070 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.056273Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","name":"test-acc-function-pn-pn01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.056273Z","id":"81747cba-53fd-4399-828c-fbadd1b1faf3","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.4.0/22","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.056273Z","id":"e1a95737-170c-4783-9297-8710b1350a1a","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d0b8::/64","updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.056273Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1070" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8480b176-581f-436f-8278-1d8800b43bc9 + status: 200 OK + code: 200 + duration: 27.262673ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4a00f5a-5222-43fb-9fd2-7dae459ef2a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1071 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.135893Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","name":"test-acc-function-pn-pn00","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-06-16T16:32:29.135893Z","id":"9b81f242-1f9d-48b8-b259-99aa33f49cea","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.40.0/22","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-06-16T16:32:29.135893Z","id":"61b2717f-432b-4be8-9795-cef5602bdf3c","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:411f::/64","updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-06-16T16:32:29.135893Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d98e6993-39e0-49e8-bf25-c8beca849125 + status: 200 OK + code: 200 + duration: 31.665799ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 579 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T16:32:32.884625Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "579" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 86b6b6e6-38f0-41d0-b64e-71f20cf716d8 + status: 200 OK + code: 200 + duration: 40.80164ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 731 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"internal error","handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:47.501611Z"}' + headers: + Content-Length: + - "731" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3230de08-e269-4dbb-ac96-1321a144b4e8 + status: 200 OK + code: 200 + duration: 58.52745ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/462bb3a7-301e-44b9-8f69-207cfb9cb94c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:42.004093Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"462bb3a7-301e-44b9-8f69-207cfb9cb94c","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:42.004093Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb2df814-bbad-4f39-b1c8-1eb206106b07 + status: 200 OK + code: 200 + duration: 103.913397ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 765 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"internal error","handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:47.671624Z"}' + headers: + Content-Length: + - "765" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a97d6eba-080b-4aa7-95fb-c0c73b2b3470 + status: 200 OK + code: 200 + duration: 144.754412ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/462bb3a7-301e-44b9-8f69-207cfb9cb94c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 753 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:42.004093Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"462bb3a7-301e-44b9-8f69-207cfb9cb94c","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"created","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:42.004093Z"}' + headers: + Content-Length: + - "753" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de13224a-c287-446f-9ad3-78bf53d5be10 + status: 200 OK + code: 200 + duration: 60.716385ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 731 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"internal error","handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:47.501611Z"}' + headers: + Content-Length: + - "731" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fac5d29a-bdc4-42d1-ae81-bb2831966956 + status: 200 OK + code: 200 + duration: 111.725917ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 765 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":"internal error","handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"error","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:47.671624Z"}' + headers: + Content-Length: + - "765" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bcc7627d-83af-41e4-85c7-dc9e344bd652 + status: 200 OK + code: 200 + duration: 114.775425ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/462bb3a7-301e-44b9-8f69-207cfb9cb94c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 757 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:42.004093Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-02.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"462bb3a7-301e-44b9-8f69-207cfb9cb94c","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-02","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"deleting","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:50.412790861Z"}' + headers: + Content-Length: + - "757" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0765dffa-052b-4b60-814a-3232567e4183 + status: 200 OK + code: 200 + duration: 84.103701ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 725 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.239983Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f00.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"f187ffcd-e01a-4018-9669-38b3c7e3e8ef","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f00","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":null,"ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"deleting","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:50.470422235Z"}' + headers: + Content-Length: + - "725" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4640955-62b5-403c-aab3-4d7cdf7ce40e + status: 200 OK + code: 200 + duration: 98.821779ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 759 + uncompressed: false + body: '{"build_message":null,"cpu_limit":140,"created_at":"2025-06-16T16:32:38.121175Z","description":"","domain_name":"tffunckindbuckzikb0q7x-test-acc-function-pn-f01.functions.fnc.fr-par.scw.cloud","environment_variables":{},"error_message":null,"handler":"Handle","http_option":"enabled","id":"e81349b1-4ad1-4599-871f-0e3057bf3de7","max_scale":20,"memory_limit":256,"min_scale":0,"name":"test-acc-function-pn-f01","namespace_id":"0aa68856-5a7c-460e-a304-96399c647807","privacy":"private","private_network_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","ready_at":null,"region":"fr-par","runtime":"go123","runtime_message":"","sandbox":"v1","secret_environment_variables":[],"status":"deleting","tags":[],"timeout":"300s","updated_at":"2025-06-16T16:32:50.485426036Z"}' + headers: + Content-Length: + - "759" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f1e0715-23af-4ec6-bbc0-d059f78969bd + status: 200 OK + code: 200 + duration: 137.487655ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 579 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"ready","tags":[],"updated_at":"2025-06-16T16:32:32.884625Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "579" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 019b7e24-c4ef-4704-bb87-5c5ee5e0faa8 + status: 200 OK + code: 200 + duration: 47.35007ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 585 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T16:32:50.704304065Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "585" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7848a2d5-66c3-46d4-a36c-e56edddb9d8b + status: 200 OK + code: 200 + duration: 316.62398ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T16:32:50.704304Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "582" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 386d4973-ed88-47e8-aa8f-d73b70e1362e + status: 200 OK + code: 200 + duration: 44.194813ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4a00f5a-5222-43fb-9fd2-7dae459ef2a0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a435b73-1439-494e-b6d3-2fec30d0d4af + status: 204 No Content + code: 204 + duration: 1.383833819s + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1c24f28f-0ff5-4bc2-9004-8fe7e7688184 + status: 204 No Content + code: 204 + duration: 1.387494533s + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T16:32:50.704304Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "582" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:32:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2d56546-2a06-4926-aef9-6ee9d1462ada + status: 200 OK + code: 200 + duration: 49.366ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T16:32:50.704304Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "582" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0a0ff14b-5bae-4065-81d4-4fb209d77d21 + status: 200 OK + code: 200 + duration: 45.163099ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T16:32:50.704304Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "582" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4413a55e-6030-4eb8-86e6-dcf0a062cea1 + status: 200 OK + code: 200 + duration: 41.60648ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T16:32:50.704304Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "582" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e85ba935-492e-4f5c-97bb-36327a05bebc + status: 200 OK + code: 200 + duration: 47.221699ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 582 + uncompressed: false + body: '{"created_at":"2025-06-16T16:32:29.224354Z","description":"","environment_variables":{},"error_message":null,"id":"0aa68856-5a7c-460e-a304-96399c647807","name":"tf-func-kind-buck","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","registry_endpoint":"rg.fr-par.scw.cloud/funcscwtffunckindbuckzikb0q7x","registry_namespace_id":"5ce9f5db-16c5-4cca-bd16-b8187a1f2784","secret_environment_variables":[],"status":"deleting","tags":[],"updated_at":"2025-06-16T16:32:50.704304Z","vpc_integration_activated":true}' + headers: + Content-Length: + - "582" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6f21a9ef-922e-4fa0-8dc1-77303babd679 + status: 200 OK + code: 200 + duration: 40.179924ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 37 + uncompressed: false + body: '{"message":"Namespace was not found"}' + headers: + Content-Length: + - "37" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bdfff8da-4c31-4484-9ec5-3671bd75639f + status: 404 Not Found + code: 404 + duration: 21.348ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/namespaces/0aa68856-5a7c-460e-a304-96399c647807 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 37 + uncompressed: false + body: '{"message":"Namespace was not found"}' + headers: + Content-Length: + - "37" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d238295f-9a5d-4ff6-9c23-9d7b348248e6 + status: 404 Not Found + code: 404 + duration: 23.076522ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/f187ffcd-e01a-4018-9669-38b3c7e3e8ef + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 36 + uncompressed: false + body: '{"message":"Function was not found"}' + headers: + Content-Length: + - "36" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8c676177-a761-4bac-abd2-03fd06c37469 + status: 404 Not Found + code: 404 + duration: 76.916771ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/e81349b1-4ad1-4599-871f-0e3057bf3de7 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 36 + uncompressed: false + body: '{"message":"Function was not found"}' + headers: + Content-Length: + - "36" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a86e8221-30bb-49dc-8c24-6db4c2ea9189 + status: 404 Not Found + code: 404 + duration: 25.442909ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/functions/v1beta1/regions/fr-par/functions/462bb3a7-301e-44b9-8f69-207cfb9cb94c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 36 + uncompressed: false + body: '{"message":"Function was not found"}' + headers: + Content-Length: + - "36" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8798b2f-ef94-477c-8950-bf4c32d5cc2a + status: 404 Not Found + code: 404 + duration: 72.868589ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4a00f5a-5222-43fb-9fd2-7dae459ef2a0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"private_network","resource_id":"d4a00f5a-5222-43fb-9fd2-7dae459ef2a0","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 07eefb97-a13b-41a7-a24c-e27716984ddd + status: 404 Not Found + code: 404 + duration: 18.99034ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"private_network","resource_id":"c5b3c2f5-3a1b-4241-805e-c9aa9f7a4432","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 16 Jun 2025 16:33:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe1b562b-63e1-4c80-8bad-9bcdd28ee218 + status: 404 Not Found + code: 404 + duration: 66.347381ms