diff --git a/docs/resources/instance_server.md b/docs/resources/instance_server.md index 06113ab85a..7980587cbe 100644 --- a/docs/resources/instance_server.md +++ b/docs/resources/instance_server.md @@ -254,6 +254,8 @@ attached to the server. Updates to this field will trigger a stop/start of the s - `replace_on_type_change` - (Defaults to false) If true, the server will be replaced if `type` is changed. Otherwise, the server will migrate. +- `protected` - (Optional) Set to true to activate server protection option. + - `zone` - (Defaults to [provider](../index.md#zone) `zone`) The [zone](../guides/regions_and_zones.md#zones) in which the server should be created. - `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the project the server is associated with. diff --git a/go.mod b/go.mod index 5943209dc2..5dccc39009 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,7 @@ module github.com/scaleway/terraform-provider-scaleway/v2 go 1.24.0 + require ( github.com/aws/aws-sdk-go-v2 v1.36.3 github.com/aws/aws-sdk-go-v2/config v1.29.9 @@ -25,7 +26,7 @@ require ( github.com/nats-io/jwt/v2 v2.7.3 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.32.0.20250320132958-0f59cae533d0 + github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250407124844-38ab1ca8e81d github.com/stretchr/testify v1.10.0 golang.org/x/crypto v0.36.0 gopkg.in/dnaeon/go-vcr.v3 v3.2.0 diff --git a/go.sum b/go.sum index f249bd6a83..31bd597504 100644 --- a/go.sum +++ b/go.sum @@ -296,8 +296,8 @@ github.com/robfig/cron/v3 v3.0.1 h1:WdRxkvbJztn8LMz/QEvLN5sBU+xKpSqwwUO1Pjr4qDs= github.com/robfig/cron/v3 v3.0.1/go.mod h1:eQICP3HwyT7UooqI/z+Ov+PtYAWygg1TEWWzGIFLtro= 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/scaleway/scaleway-sdk-go v1.0.0-beta.32.0.20250320132958-0f59cae533d0 h1:aqpUaCWx5ta43b9dZv1bMIvUUJTux9Am+S7RmJbiVN8= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.32.0.20250320132958-0f59cae533d0/go.mod h1:792k1RTU+5JeMXm35/e2Wgp71qPH/DmDoZrRc+EFZDk= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250407124844-38ab1ca8e81d h1:EjD1RHPgsTomVw0lKgZu6YHK4ZMSBkSjeFrirnvWBcw= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250407124844-38ab1ca8e81d/go.mod h1:792k1RTU+5JeMXm35/e2Wgp71qPH/DmDoZrRc+EFZDk= 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/services/instance/server.go b/internal/services/instance/server.go index 0539b39544..f7afec7db4 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -73,6 +73,12 @@ func ResourceServer() *schema.Resource { Description: "The instanceSDK type of the server", // TODO: link to scaleway pricing in the doc DiffSuppressFunc: dsf.IgnoreCase, }, + "protected": { + Type: schema.TypeBool, + Optional: true, + Default: false, + Description: "If true, the instance is protected against accidental deletion via the Scaleway API.", + }, "replace_on_type_change": { Type: schema.TypeBool, Optional: true, @@ -384,6 +390,7 @@ func ResourceInstanceServerCreate(ctx context.Context, d *schema.ResourceData, m SecurityGroup: types.ExpandStringPtr(zonal.ExpandID(d.Get("security_group_id")).ID), DynamicIPRequired: scw.BoolPtr(d.Get("enable_dynamic_ip").(bool)), Tags: types.ExpandStrings(d.Get("tags")), + Protected: d.Get("protected").(bool), } enableIPv6, ok := d.GetOk("enable_ipv6") @@ -619,6 +626,7 @@ func ResourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m i _ = d.Set("enable_dynamic_ip", server.DynamicIPRequired) _ = d.Set("organization_id", server.Organization) _ = d.Set("project_id", server.Project) + _ = d.Set("protected", server.Protected) // Image could be empty in an import context. image := regional.ExpandID(d.Get("image").(string)) @@ -824,6 +832,11 @@ func ResourceInstanceServerUpdate(ctx context.Context, d *schema.ResourceData, m updateRequest.DynamicIPRequired = scw.BoolPtr(d.Get("enable_dynamic_ip").(bool)) } + if d.HasChange("protected") { + serverShouldUpdate = true + updateRequest.Protected = types.ExpandBoolPtr(d.Get("protected").(bool)) + } + if d.HasChanges("additional_volume_ids", "root_volume") { volumes, err := instanceServerVolumesUpdate(ctx, d, api, zone, isStopped) if err != nil { diff --git a/internal/services/lb/testdata/lb-with-private-networks-ipam-ids.cassette.yaml b/internal/services/lb/testdata/lb-with-private-networks-ipam-ids.cassette.yaml index 445c490d77..324930ef2e 100644 --- a/internal/services/lb/testdata/lb-with-private-networks-ipam-ids.cassette.yaml +++ b/internal/services/lb/testdata/lb-with-private-networks-ipam-ids.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my vpc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"my vpc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 362 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:52.473902Z","id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770","is_default":false,"name":"my vpc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-01-24T14:11:52.473902Z"}' + body: '{"created_at":"2025-04-07T14:20:53.474867Z","id":"24dcd1fe-e882-47cb-9744-e3311395f5a4","is_default":false,"name":"my vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-04-07T14:20:53.474867Z"}' headers: Content-Length: - - "352" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:52 GMT + - Mon, 07 Apr 2025 14:20:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f9a42b1-611b-4b8d-bbdc-65d7c7fa8917 + - 215ffd91-1570-4023-a24b-7af1378329e6 status: 200 OK code: 200 - duration: 67.741125ms + duration: 113.63133ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b1d81b64-bdb1-4d51-b29d-d74f3b914770 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/24dcd1fe-e882-47cb-9744-e3311395f5a4 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 362 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:52.473902Z","id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770","is_default":false,"name":"my vpc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-01-24T14:11:52.473902Z"}' + body: '{"created_at":"2025-04-07T14:20:53.474867Z","id":"24dcd1fe-e882-47cb-9744-e3311395f5a4","is_default":false,"name":"my vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-04-07T14:20:53.474867Z"}' headers: Content-Length: - - "352" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:52 GMT + - Mon, 07 Apr 2025 14:20:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +97,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f199bc5b-3f2e-4cfe-a96c-04958e54b17a + - 0ed37a3b-8051-4c65-a2a0-e3cd78405dbf status: 200 OK code: 200 - duration: 28.317458ms + duration: 70.216493ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 172 + content_length: 168 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-confident-shtern","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}' + body: '{"name":"tf-pn-hungry-nobel","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1045 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:52.598526Z","dhcp_enabled":true,"id":"e223548b-52b9-43ab-ba75-22d7346e0a32","name":"tf-pn-confident-shtern","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-24T14:11:52.598526Z","id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"},{"created_at":"2025-01-24T14:11:52.598526Z","id":"d8f53010-3265-4fa3-bb6d-81f27a8f4c01","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3ed8::/64","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}],"tags":[],"updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}' + body: '{"created_at":"2025-04-07T14:20:53.652436Z","dhcp_enabled":true,"id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","name":"tf-pn-hungry-nobel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-04-07T14:20:53.652436Z","id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"},{"created_at":"2025-04-07T14:20:53.652436Z","id":"8d2ee3b0-14f8-4362-9c95-93d057bc626d","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:1b84::/64","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}],"tags":[],"updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}' headers: Content-Length: - - "1026" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:53 GMT + - Mon, 07 Apr 2025 14:20:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f2a43ba-de7b-412c-8ab3-56bac076a493 + - 8442adc5-c3f4-4a6e-8db5-d1748ceabde6 status: 200 OK code: 200 - duration: 533.293834ms + duration: 577.452797ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e223548b-52b9-43ab-ba75-22d7346e0a32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1824a7a5-d562-41ff-abd6-34f89c1fe1d4 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1045 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:52.598526Z","dhcp_enabled":true,"id":"e223548b-52b9-43ab-ba75-22d7346e0a32","name":"tf-pn-confident-shtern","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-24T14:11:52.598526Z","id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"},{"created_at":"2025-01-24T14:11:52.598526Z","id":"d8f53010-3265-4fa3-bb6d-81f27a8f4c01","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3ed8::/64","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}],"tags":[],"updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}' + body: '{"created_at":"2025-04-07T14:20:53.652436Z","dhcp_enabled":true,"id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","name":"tf-pn-hungry-nobel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-04-07T14:20:53.652436Z","id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"},{"created_at":"2025-04-07T14:20:53.652436Z","id":"8d2ee3b0-14f8-4362-9c95-93d057bc626d","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:1b84::/64","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}],"tags":[],"updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}' headers: Content-Length: - - "1026" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:53 GMT + - Mon, 07 Apr 2025 14:20:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2c23791-b4ca-4221-9aa4-3d21de70dc53 + - 0e33e7c2-9e5e-4cae-bf9c-1956eef31762 status: 200 OK code: 200 - duration: 27.16925ms + duration: 54.057589ms - id: 4 request: proto: HTTP/1.1 @@ -212,13 +212,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","source":{"private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32"},"is_ipv6":false,"address":"172.16.32.7","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4"},"is_ipv6":false,"address":"172.16.32.7","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips method: POST response: @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 369 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-01-24T14:11:53.275551Z","id":"28d848bf-c09f-4481-b850-93192a12d13d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b"},"tags":[],"updated_at":"2025-01-24T14:11:53.275551Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-04-07T14:20:54.929961Z","id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb"},"tags":[],"updated_at":"2025-04-07T14:20:54.929961Z","zone":null}' headers: Content-Length: - - "358" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:53 GMT + - Mon, 07 Apr 2025 14:20:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82936106-a9b8-40fc-ad69-0ce968602514 + - 9f46ac8c-8255-44ad-88c7-c15103dc30c9 status: 200 OK code: 200 - duration: 197.87175ms + duration: 787.403807ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/28d848bf-c09f-4481-b850-93192a12d13d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/0d49fa8e-9c49-44f0-9d3b-fa746784762d method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 369 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-01-24T14:11:53.275551Z","id":"28d848bf-c09f-4481-b850-93192a12d13d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b"},"tags":[],"updated_at":"2025-01-24T14:11:53.275551Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-04-07T14:20:54.929961Z","id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb"},"tags":[],"updated_at":"2025-04-07T14:20:54.929961Z","zone":null}' headers: Content-Length: - - "358" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:53 GMT + - Mon, 07 Apr 2025 14:20:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a17160f-497c-4408-9d3f-984901651ff7 + - a819105e-3a46-4a94-843a-aa4bb66696be status: 200 OK code: 200 - duration: 25.336292ms + duration: 46.153488ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e223548b-52b9-43ab-ba75-22d7346e0a32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1824a7a5-d562-41ff-abd6-34f89c1fe1d4 method: GET response: proto: HTTP/2.0 @@ -325,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1045 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:52.598526Z","dhcp_enabled":true,"id":"e223548b-52b9-43ab-ba75-22d7346e0a32","name":"tf-pn-confident-shtern","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-24T14:11:52.598526Z","id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"},{"created_at":"2025-01-24T14:11:52.598526Z","id":"d8f53010-3265-4fa3-bb6d-81f27a8f4c01","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3ed8::/64","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}],"tags":[],"updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}' + body: '{"created_at":"2025-04-07T14:20:53.652436Z","dhcp_enabled":true,"id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","name":"tf-pn-hungry-nobel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-04-07T14:20:53.652436Z","id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"},{"created_at":"2025-04-07T14:20:53.652436Z","id":"8d2ee3b0-14f8-4362-9c95-93d057bc626d","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:1b84::/64","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}],"tags":[],"updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}' headers: Content-Length: - - "1026" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:53 GMT + - Mon, 07 Apr 2025 14:20:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fba63453-38f9-4fb1-833b-5b2dc337c954 + - 90766101-46a5-4ff8-be6c-19db18907ca9 status: 200 OK code: 200 - duration: 43.897834ms + duration: 53.625668ms - id: 7 request: proto: HTTP/1.1 @@ -361,13 +361,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-lb-with-private-network-ipam","description":"","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-with-private-network-ipam","description":"","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: @@ -376,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 894 + content_length: 921 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513527696Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:53.513527696Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276754947Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:55.276754947Z","zone":"fr-par-1"}' headers: Content-Length: - - "894" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:53 GMT + - Mon, 07 Apr 2025 14:20:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 632131af-b287-4cb1-8882-8fcf8dadba2f + - 8545e1ef-ac4a-4f1b-a165-3aae9998c9a2 status: 200 OK code: 200 - duration: 383.696333ms + duration: 343.858929ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -425,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 888 + content_length: 915 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:53.513528Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:55.276755Z","zone":"fr-par-1"}' headers: Content-Length: - - "888" + - "915" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:53 GMT + - Mon, 07 Apr 2025 14:20:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cb95d9a-9e90-4dd0-a284-30b3d70d0616 + - c6ebe6be-d158-44ba-b050-691403904030 status: 200 OK code: 200 - duration: 97.661833ms + duration: 74.91779ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -474,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1117 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:11:55.719161Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:20:57.701875Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"}' headers: Content-Length: - - "1084" + - "1117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:23 GMT + - Mon, 07 Apr 2025 14:21:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,29 +495,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b83b9b0-07e5-4d09-a091-d952d8877965 + - 831d79c7-be4a-4c23-a316-f9ac9599ae5a status: 200 OK code: 200 - duration: 91.071709ms + duration: 79.710516ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 53 + content_length: 113 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"ipam_ids":["28d848bf-c09f-4481-b850-93192a12d13d"]}' + body: '{"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","ipam_ids":["0d49fa8e-9c49-44f0-9d3b-fa746784762d"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3/private-networks/e223548b-52b9-43ab-ba75-22d7346e0a32/attach + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4/attach-private-network method: POST response: proto: HTTP/2.0 @@ -525,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1377 + content_length: 1416 uncompressed: false - body: '{"created_at":"2025-01-24T14:12:24.334950795Z","dhcp_config":{"ip_id":"28d848bf-c09f-4481-b850-93192a12d13d"},"ipam_ids":["28d848bf-c09f-4481-b850-93192a12d13d"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:11:55.719161Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"},"private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","status":"pending","updated_at":"2025-01-24T14:12:24.334950795Z"}' + body: '{"created_at":"2025-04-07T14:21:26.021736017Z","dhcp_config":{"ip_id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d"},"ipam_ids":["0d49fa8e-9c49-44f0-9d3b-fa746784762d"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:20:57.701875Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"},"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","status":"pending","updated_at":"2025-04-07T14:21:26.021736017Z"}' headers: Content-Length: - - "1377" + - "1416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:24 GMT + - Mon, 07 Apr 2025 14:21:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -546,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d6d7303-1c7f-449d-9fbf-0d66d5a72a27 + - fb9a97ae-f904-492c-9738-39479a7d83bd status: 200 OK code: 200 - duration: 595.862083ms + duration: 503.641944ms - id: 11 request: proto: HTTP/1.1 @@ -565,8 +565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -574,20 +574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1209 + content_length: 1243 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:24.334951Z","dhcp_config":{"ip_id":"28d848bf-c09f-4481-b850-93192a12d13d"},"ipam_ids":["28d848bf-c09f-4481-b850-93192a12d13d"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"},"private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","status":"pending","updated_at":"2025-01-24T14:12:24.334951Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:21:26.021736Z","dhcp_config":{"ip_id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d"},"ipam_ids":["0d49fa8e-9c49-44f0-9d3b-fa746784762d"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"},"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","status":"pending","updated_at":"2025-04-07T14:21:26.021736Z"}],"total_count":1}' headers: Content-Length: - - "1209" + - "1243" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:24 GMT + - Mon, 07 Apr 2025 14:21:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -595,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abe09aaf-2dc1-4554-99d3-2195fa5e7371 + - 0aa201b9-db3c-4f11-bb0a-e2edef2469da status: 200 OK code: 200 - duration: 87.325792ms + duration: 132.154799ms - id: 12 request: proto: HTTP/1.1 @@ -614,8 +614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -623,18 +623,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1207 + content_length: 1241 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:24.334951Z","dhcp_config":{"ip_id":"28d848bf-c09f-4481-b850-93192a12d13d"},"ipam_ids":["28d848bf-c09f-4481-b850-93192a12d13d"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"},"private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","status":"ready","updated_at":"2025-01-24T14:12:27.143830Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:21:26.021736Z","dhcp_config":{"ip_id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d"},"ipam_ids":["0d49fa8e-9c49-44f0-9d3b-fa746784762d"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"},"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","status":"ready","updated_at":"2025-04-07T14:21:28.505329Z"}],"total_count":1}' headers: Content-Length: - - "1207" + - "1241" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:54 GMT + - Mon, 07 Apr 2025 14:21:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -644,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 108705d0-6d22-4a92-a50d-199a4bb324cb + - bdb29878-bbbd-46f1-bb4c-bc733f5f151f status: 200 OK code: 200 - duration: 90.447417ms + duration: 130.665065ms - id: 13 request: proto: HTTP/1.1 @@ -663,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -672,18 +672,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1117 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:26.833707Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:21:28.261112Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"}' headers: Content-Length: - - "1084" + - "1117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:54 GMT + - Mon, 07 Apr 2025 14:21:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -693,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e3c77c0-a0fb-4c67-8b29-bd4fed2011f1 + - 657d2093-7076-40b5-be4c-4c2c430ef4c3 status: 200 OK code: 200 - duration: 103.468208ms + duration: 60.092259ms - id: 14 request: proto: HTTP/1.1 @@ -712,8 +712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -721,18 +721,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1117 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:26.833707Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:21:28.261112Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"}' headers: Content-Length: - - "1084" + - "1117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:54 GMT + - Mon, 07 Apr 2025 14:21:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -742,10 +742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee6154c0-5c76-4994-9cc9-2967e48d8405 + - da1576ac-7682-4c34-9939-691a58616e68 status: 200 OK code: 200 - duration: 98.200125ms + duration: 63.646401ms - id: 15 request: proto: HTTP/1.1 @@ -761,8 +761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -770,18 +770,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1207 + content_length: 1241 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:24.334951Z","dhcp_config":{"ip_id":"28d848bf-c09f-4481-b850-93192a12d13d"},"ipam_ids":["28d848bf-c09f-4481-b850-93192a12d13d"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"},"private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","status":"ready","updated_at":"2025-01-24T14:12:27.143830Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:21:26.021736Z","dhcp_config":{"ip_id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d"},"ipam_ids":["0d49fa8e-9c49-44f0-9d3b-fa746784762d"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"},"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","status":"ready","updated_at":"2025-04-07T14:21:28.505329Z"}],"total_count":1}' headers: Content-Length: - - "1207" + - "1241" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:55 GMT + - Mon, 07 Apr 2025 14:21:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 187375e7-7fcf-4464-8437-3ebfd6ea1504 + - 5febd9e7-35b0-4a88-a5bd-bb4d0a8219ae status: 200 OK code: 200 - duration: 117.38025ms + duration: 118.223087ms - id: 16 request: proto: HTTP/1.1 @@ -810,7 +810,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_name=test-lb-with-private-network-ipam&resource_type=lb_server method: GET response: @@ -819,18 +819,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 536 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-01-24T14:11:53.275551Z","id":"28d848bf-c09f-4481-b850-93192a12d13d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","mac_address":"02:00:00:1E:6A:11","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b"},"tags":[],"updated_at":"2025-01-24T14:12:25.405441Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-04-07T14:20:54.929961Z","id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","mac_address":"02:00:00:12:F5:F0","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb"},"tags":[],"updated_at":"2025-04-07T14:21:26.845123Z","zone":null}],"total_count":1}' headers: Content-Length: - - "521" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:55 GMT + - Mon, 07 Apr 2025 14:21:56 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -840,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdc85e82-3fd9-4dd1-b5e8-8480b6fd385b + - 463c833a-9c8b-4e00-b50e-17591b6060c1 status: 200 OK code: 200 - duration: 68.047ms + duration: 50.982868ms - id: 17 request: proto: HTTP/1.1 @@ -859,8 +859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -868,18 +868,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1117 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:26.833707Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:21:28.261112Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"}' headers: Content-Length: - - "1084" + - "1117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:55 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -889,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 132280c1-fb50-420a-bf1e-253524e51eae + - 1301dd65-4b74-4262-94e2-e60794ed7cda status: 200 OK code: 200 - duration: 86.119666ms + duration: 62.072356ms - id: 18 request: proto: HTTP/1.1 @@ -908,7 +908,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_name=test-lb-with-private-network-ipam&resource_type=lb_server method: GET response: @@ -917,18 +917,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 536 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-01-24T14:11:53.275551Z","id":"28d848bf-c09f-4481-b850-93192a12d13d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","mac_address":"02:00:00:1E:6A:11","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b"},"tags":[],"updated_at":"2025-01-24T14:12:25.405441Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-04-07T14:20:54.929961Z","id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","mac_address":"02:00:00:12:F5:F0","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb"},"tags":[],"updated_at":"2025-04-07T14:21:26.845123Z","zone":null}],"total_count":1}' headers: Content-Length: - - "521" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:55 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -938,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 708d71b2-44a0-4a0a-aec6-4d464225e209 + - fa682b44-a399-400d-9cba-e6052b8e3a6f status: 200 OK code: 200 - duration: 91.8095ms + duration: 45.561034ms - id: 19 request: proto: HTTP/1.1 @@ -957,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b1d81b64-bdb1-4d51-b29d-d74f3b914770 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/24dcd1fe-e882-47cb-9744-e3311395f5a4 method: GET response: proto: HTTP/2.0 @@ -966,18 +966,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 362 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:52.473902Z","id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770","is_default":false,"name":"my vpc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-01-24T14:11:52.473902Z"}' + body: '{"created_at":"2025-04-07T14:20:53.474867Z","id":"24dcd1fe-e882-47cb-9744-e3311395f5a4","is_default":false,"name":"my vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-04-07T14:20:53.474867Z"}' headers: Content-Length: - - "352" + - "362" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:56 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -987,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75efaf91-1f8e-4a4d-9020-6f4bdbe98216 + - 3a12c1be-249d-4f2e-b06e-e7043526c30a status: 200 OK code: 200 - duration: 36.023958ms + duration: 66.99141ms - id: 20 request: proto: HTTP/1.1 @@ -1006,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e223548b-52b9-43ab-ba75-22d7346e0a32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1824a7a5-d562-41ff-abd6-34f89c1fe1d4 method: GET response: proto: HTTP/2.0 @@ -1015,18 +1015,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1045 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:52.598526Z","dhcp_enabled":true,"id":"e223548b-52b9-43ab-ba75-22d7346e0a32","name":"tf-pn-confident-shtern","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-24T14:11:52.598526Z","id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"},{"created_at":"2025-01-24T14:11:52.598526Z","id":"d8f53010-3265-4fa3-bb6d-81f27a8f4c01","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3ed8::/64","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}],"tags":[],"updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}' + body: '{"created_at":"2025-04-07T14:20:53.652436Z","dhcp_enabled":true,"id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","name":"tf-pn-hungry-nobel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-04-07T14:20:53.652436Z","id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"},{"created_at":"2025-04-07T14:20:53.652436Z","id":"8d2ee3b0-14f8-4362-9c95-93d057bc626d","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:1b84::/64","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}],"tags":[],"updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}' headers: Content-Length: - - "1026" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:56 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1036,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ed5e14-f032-482a-b86c-6431f19c22c8 + - 429063d7-7756-429c-abf0-34e2f9663c6e status: 200 OK code: 200 - duration: 28.54ms + duration: 44.55029ms - id: 21 request: proto: HTTP/1.1 @@ -1055,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/28d848bf-c09f-4481-b850-93192a12d13d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/0d49fa8e-9c49-44f0-9d3b-fa746784762d method: GET response: proto: HTTP/2.0 @@ -1064,18 +1064,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 495 + content_length: 509 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-01-24T14:11:53.275551Z","id":"28d848bf-c09f-4481-b850-93192a12d13d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","mac_address":"02:00:00:1E:6A:11","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b"},"tags":[],"updated_at":"2025-01-24T14:12:25.405441Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-04-07T14:20:54.929961Z","id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","mac_address":"02:00:00:12:F5:F0","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb"},"tags":[],"updated_at":"2025-04-07T14:21:26.845123Z","zone":null}' headers: Content-Length: - - "495" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:56 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1085,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 443ebdc1-51f2-4eb4-ac48-6bbd2ab9b9cd + - 610c3df8-66ee-48d7-8aaf-1f1d896436cb status: 200 OK code: 200 - duration: 25.282416ms + duration: 49.063119ms - id: 22 request: proto: HTTP/1.1 @@ -1104,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e223548b-52b9-43ab-ba75-22d7346e0a32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1824a7a5-d562-41ff-abd6-34f89c1fe1d4 method: GET response: proto: HTTP/2.0 @@ -1113,18 +1113,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1045 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:52.598526Z","dhcp_enabled":true,"id":"e223548b-52b9-43ab-ba75-22d7346e0a32","name":"tf-pn-confident-shtern","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-24T14:11:52.598526Z","id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"},{"created_at":"2025-01-24T14:11:52.598526Z","id":"d8f53010-3265-4fa3-bb6d-81f27a8f4c01","private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3ed8::/64","updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}],"tags":[],"updated_at":"2025-01-24T14:11:52.598526Z","vpc_id":"b1d81b64-bdb1-4d51-b29d-d74f3b914770"}' + body: '{"created_at":"2025-04-07T14:20:53.652436Z","dhcp_enabled":true,"id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","name":"tf-pn-hungry-nobel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-04-07T14:20:53.652436Z","id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"},{"created_at":"2025-04-07T14:20:53.652436Z","id":"8d2ee3b0-14f8-4362-9c95-93d057bc626d","private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:1b84::/64","updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}],"tags":[],"updated_at":"2025-04-07T14:20:53.652436Z","vpc_id":"24dcd1fe-e882-47cb-9744-e3311395f5a4"}' headers: Content-Length: - - "1026" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:56 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1134,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c69c27ed-8062-4f5a-8794-6b84340bb4f1 + - bf367bca-cafe-4125-9a5c-d5feffeb2ea9 status: 200 OK code: 200 - duration: 53.342708ms + duration: 29.805918ms - id: 23 request: proto: HTTP/1.1 @@ -1153,8 +1153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -1162,18 +1162,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1117 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:26.833707Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:21:28.261112Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"}' headers: Content-Length: - - "1084" + - "1117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:56 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1183,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97e30c80-758c-42c2-901e-2718dfb58d2b + - aa45eee2-90f5-4ee5-81cc-0032149ac879 status: 200 OK code: 200 - duration: 115.038916ms + duration: 65.470364ms - id: 24 request: proto: HTTP/1.1 @@ -1202,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1211,18 +1211,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1207 + content_length: 1241 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:24.334951Z","dhcp_config":{"ip_id":"28d848bf-c09f-4481-b850-93192a12d13d"},"ipam_ids":["28d848bf-c09f-4481-b850-93192a12d13d"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"},"private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","status":"ready","updated_at":"2025-01-24T14:12:27.143830Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:21:26.021736Z","dhcp_config":{"ip_id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d"},"ipam_ids":["0d49fa8e-9c49-44f0-9d3b-fa746784762d"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"},"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","status":"ready","updated_at":"2025-04-07T14:21:28.505329Z"}],"total_count":1}' headers: Content-Length: - - "1207" + - "1241" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:56 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1232,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 883263c9-49d2-4add-aeb8-88bf5974eea3 + - c8c7f048-9cee-4cb6-9e19-bfbe20e3fb6b status: 200 OK code: 200 - duration: 110.755875ms + duration: 115.255824ms - id: 25 request: proto: HTTP/1.1 @@ -1251,7 +1251,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_name=test-lb-with-private-network-ipam&resource_type=lb_server method: GET response: @@ -1260,18 +1260,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 536 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-01-24T14:11:53.275551Z","id":"28d848bf-c09f-4481-b850-93192a12d13d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","mac_address":"02:00:00:1E:6A:11","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b"},"tags":[],"updated_at":"2025-01-24T14:12:25.405441Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-04-07T14:20:54.929961Z","id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","mac_address":"02:00:00:12:F5:F0","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb"},"tags":[],"updated_at":"2025-04-07T14:21:26.845123Z","zone":null}],"total_count":1}' headers: Content-Length: - - "521" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:56 GMT + - Mon, 07 Apr 2025 14:21:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1281,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee9f813a-91b6-48b5-b482-286c460c165e + - d873cc28-a701-4c15-bcb7-42addbd0b5a5 status: 200 OK code: 200 - duration: 89.377958ms + duration: 44.175074ms - id: 26 request: proto: HTTP/1.1 @@ -1300,7 +1300,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_name=test-lb-with-private-network-ipam&resource_type=lb_server method: GET response: @@ -1309,18 +1309,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 536 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-01-24T14:11:53.275551Z","id":"28d848bf-c09f-4481-b850-93192a12d13d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","mac_address":"02:00:00:1E:6A:11","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"2ec1f5c3-9fff-4f22-a5b4-fec9b43b7f7b"},"tags":[],"updated_at":"2025-01-24T14:12:25.405441Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-04-07T14:20:54.929961Z","id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","mac_address":"02:00:00:12:F5:F0","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"7fd899b9-229f-4b3c-91b9-3834ed7774cb"},"tags":[],"updated_at":"2025-04-07T14:21:26.845123Z","zone":null}],"total_count":1}' headers: Content-Length: - - "521" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:57 GMT + - Mon, 07 Apr 2025 14:21:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1330,10 +1330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bab8617c-1f13-4f4a-825f-2efb170cd499 + - c3afb3b4-364f-49f0-b285-61b4853b7fdd status: 200 OK code: 200 - duration: 77.017584ms + duration: 51.079812ms - id: 27 request: proto: HTTP/1.1 @@ -1349,8 +1349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -1358,18 +1358,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1117 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:26.833707Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:21:28.261112Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"}' headers: Content-Length: - - "1084" + - "1117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:57 GMT + - Mon, 07 Apr 2025 14:21:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1379,10 +1379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d802e2d-7472-40aa-8a95-f952fb2aa7b4 + - 8f77f841-86af-498d-9e27-540c6ae88abe status: 200 OK code: 200 - duration: 78.226125ms + duration: 73.696102ms - id: 28 request: proto: HTTP/1.1 @@ -1398,8 +1398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1407,18 +1407,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1207 + content_length: 1241 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:24.334951Z","dhcp_config":{"ip_id":"28d848bf-c09f-4481-b850-93192a12d13d"},"ipam_ids":["28d848bf-c09f-4481-b850-93192a12d13d"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"},"private_network_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","status":"ready","updated_at":"2025-01-24T14:12:27.143830Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:21:26.021736Z","dhcp_config":{"ip_id":"0d49fa8e-9c49-44f0-9d3b-fa746784762d"},"ipam_ids":["0d49fa8e-9c49-44f0-9d3b-fa746784762d"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"},"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","status":"ready","updated_at":"2025-04-07T14:21:28.505329Z"}],"total_count":1}' headers: Content-Length: - - "1207" + - "1241" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:57 GMT + - Mon, 07 Apr 2025 14:21:58 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1428,29 +1428,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99be2300-b1cb-4166-9332-33f15df14709 + - dc4a2574-e33b-48dd-91e2-81b671a3122d status: 200 OK code: 200 - duration: 93.747042ms + duration: 114.720124ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: '{"private_network_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3/private-networks/e223548b-52b9-43ab-ba75-22d7346e0a32/detach + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4/detach-private-network method: POST response: proto: HTTP/2.0 @@ -1467,7 +1467,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:58 GMT + - Mon, 07 Apr 2025 14:21:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1477,10 +1477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 592d6b3a-22d5-4274-b379-ceb059b3883b + - 8f922274-8be0-45a4-a01b-5559b7106737 status: 204 No Content code: 204 - duration: 285.834209ms + duration: 369.183125ms - id: 30 request: proto: HTTP/1.1 @@ -1496,8 +1496,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -1505,18 +1505,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1117 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:26.833707Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:58.773674Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:21:28.261112Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:59.109597Z","zone":"fr-par-1"}' headers: Content-Length: - - "1084" + - "1117" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:58 GMT + - Mon, 07 Apr 2025 14:21:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1526,10 +1526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f6312d6-43a3-420d-8260-85900b1d17e8 + - 9c01e55d-e872-4901-b52b-da3f7d061528 status: 200 OK code: 200 - duration: 94.284ms + duration: 59.506683ms - id: 31 request: proto: HTTP/1.1 @@ -1545,8 +1545,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4?release_ip=false method: DELETE response: proto: HTTP/2.0 @@ -1563,7 +1563,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:58 GMT + - Mon, 07 Apr 2025 14:21:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1573,10 +1573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62757bb4-1d11-47bb-b100-94448d1c7897 + - b83471d2-0eac-46d5-beb9-bd6874973db4 status: 204 No Content code: 204 - duration: 301.311792ms + duration: 307.18991ms - id: 32 request: proto: HTTP/1.1 @@ -1592,8 +1592,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -1601,18 +1601,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 1121 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:53.513528Z","description":"","frontend_count":0,"id":"ac619eb7-de06-4c66-a5af-42a5367748a3","instances":[{"created_at":"2025-01-24T14:08:59.379462Z","id":"0c32325d-96b5-4fe1-a7ff-6f3f2c443c5c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:26.833707Z","zone":"fr-par-1"}],"ip":[{"id":"eac13abf-7a89-429f-b421-e13cbcf3aad3","ip_address":"195.154.71.34","lb_id":"ac619eb7-de06-4c66-a5af-42a5367748a3","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"195-154-71-34.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:12:58.256302Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:20:55.276755Z","description":"","frontend_count":0,"id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","instances":[{"created_at":"2025-04-07T13:22:23.951086Z","id":"3a218c6d-381b-4955-a711-83f91f56a1b7","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:21:28.261112Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"2c35c9df-631e-4a48-b551-adfa3e8d72d4","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:21:59.325368Z","zone":"fr-par-1"}' headers: Content-Length: - - "1088" + - "1121" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:58 GMT + - Mon, 07 Apr 2025 14:21:59 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1622,10 +1622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65f67157-d550-4456-9ce3-2b7fcbb702ea + - b5a8c52f-760b-412f-bc56-4dd46d7203bc status: 200 OK code: 200 - duration: 84.373416ms + duration: 59.985647ms - id: 33 request: proto: HTTP/1.1 @@ -1641,8 +1641,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -1661,9 +1661,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:28 GMT + - Mon, 07 Apr 2025 14:22:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,10 +1671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5176ffc4-7719-4215-8abe-4350eeb633b7 + - 7a6cd5a2-f5e6-461d-85d2-c6cc8500f632 status: 404 Not Found code: 404 - duration: 23.222917ms + duration: 36.624043ms - id: 34 request: proto: HTTP/1.1 @@ -1690,8 +1690,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -1710,9 +1710,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:28 GMT + - Mon, 07 Apr 2025 14:22:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,10 +1720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6095366e-dc23-4fd5-97c8-6ef7aa189230 + - c74a35f6-3868-4fcb-ae78-4d4e14cdd386 status: 404 Not Found code: 404 - duration: 21.860542ms + duration: 25.285654ms - id: 35 request: proto: HTTP/1.1 @@ -1741,8 +1741,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/28d848bf-c09f-4481-b850-93192a12d13d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/0d49fa8e-9c49-44f0-9d3b-fa746784762d method: DELETE response: proto: HTTP/2.0 @@ -1759,9 +1759,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:28 GMT + - Mon, 07 Apr 2025 14:22:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,10 +1769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccfa60bc-5da5-40fc-aea0-db750d9b1c80 + - bebabed9-6aa1-412f-b3ad-0ba661abe0d8 status: 204 No Content code: 204 - duration: 54.726584ms + duration: 86.124886ms - id: 36 request: proto: HTTP/1.1 @@ -1788,8 +1788,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e223548b-52b9-43ab-ba75-22d7346e0a32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1824a7a5-d562-41ff-abd6-34f89c1fe1d4 method: DELETE response: proto: HTTP/2.0 @@ -1806,9 +1806,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:30 GMT + - Mon, 07 Apr 2025 14:22:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1816,10 +1816,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec8db7c5-d166-4bbc-95c7-d25c29b9cfd5 + - 153f92b5-8420-473b-bf73-6345f867b9af status: 204 No Content code: 204 - duration: 1.450193833s + duration: 1.354475598s - id: 37 request: proto: HTTP/1.1 @@ -1835,8 +1835,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b1d81b64-bdb1-4d51-b29d-d74f3b914770 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/24dcd1fe-e882-47cb-9744-e3311395f5a4 method: DELETE response: proto: HTTP/2.0 @@ -1853,9 +1853,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:30 GMT + - Mon, 07 Apr 2025 14:22:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1863,10 +1863,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96314cce-bb3f-486d-bd40-d5ba14819922 + - 8d0e37bf-6129-4411-a52b-c94e81b2ed1f status: 204 No Content code: 204 - duration: 112.765125ms + duration: 111.235865ms - id: 38 request: proto: HTTP/1.1 @@ -1882,8 +1882,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/ac619eb7-de06-4c66-a5af-42a5367748a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2c35c9df-631e-4a48-b551-adfa3e8d72d4 method: GET response: proto: HTTP/2.0 @@ -1902,9 +1902,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:30 GMT + - Mon, 07 Apr 2025 14:22:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1912,10 +1912,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4c102b9-985b-4ce6-a63c-cf776a528ef6 + - 25c05a5b-679f-4dca-80e7-53867ca18808 status: 404 Not Found code: 404 - duration: 21.357ms + duration: 24.222712ms - id: 39 request: proto: HTTP/1.1 @@ -1931,8 +1931,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e223548b-52b9-43ab-ba75-22d7346e0a32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1824a7a5-d562-41ff-abd6-34f89c1fe1d4 method: GET response: proto: HTTP/2.0 @@ -1942,7 +1942,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"e223548b-52b9-43ab-ba75-22d7346e0a32","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"1824a7a5-d562-41ff-abd6-34f89c1fe1d4","type":"not_found"}' headers: Content-Length: - "136" @@ -1951,9 +1951,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:30 GMT + - Mon, 07 Apr 2025 14:22:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1961,7 +1961,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af6bdea9-44d9-4099-9a1b-f4d55fc303c3 + - ca97d0e0-9921-406a-bb86-4887e16bdd33 status: 404 Not Found code: 404 - duration: 24.164916ms + duration: 24.067271ms diff --git a/internal/services/lb/testdata/lb-without-pn-config.cassette.yaml b/internal/services/lb/testdata/lb-without-pn-config.cassette.yaml index d9b22a19cf..6fe3fabd70 100644 --- a/internal/services/lb/testdata/lb-without-pn-config.cassette.yaml +++ b/internal/services/lb/testdata/lb-without-pn-config.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 296 uncompressed: false - body: '{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:41 GMT + - Mon, 07 Apr 2025 14:19:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df9365fa-ffce-4204-83b1-c7a208acc8eb + - bf958e4d-7ab2-4ae4-9e61-fd1b44654c4d status: 200 OK code: 200 - duration: 93.473375ms + duration: 141.467963ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9821bd5-e65d-48a6-9f19-b64ab68ab6a7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 296 uncompressed: false - body: '{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:41 GMT + - Mon, 07 Apr 2025 14:19:07 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1da4b310-f9d0-4fdb-a3b3-6bc6f51f7356 + - e30418c1-a3f2-4f6a-b4d9-666876d23192 status: 200 OK code: 200 - duration: 73.0295ms + duration: 47.718255ms - id: 2 request: proto: HTTP/1.1 @@ -112,13 +112,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"pn-with-lb-static","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"pn-with-lb-static","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,18 +127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1020 + content_length: 1044 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:41.351836Z","dhcp_enabled":true,"id":"80f5ff95-9406-4917-852f-002c5c885f86","name":"pn-with-lb-static","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-24T14:11:41.351836Z","id":"2bf3f556-c327-432f-8ca5-3d671e85c84e","private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-24T14:11:41.351836Z","id":"11986589-3098-4793-b423-0628c18146d4","private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2131::/64","updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-04-07T14:19:07.704183Z","dhcp_enabled":true,"id":"d5250542-4f0f-42cf-8cf6-da132d987706","name":"pn-with-lb-static","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-04-07T14:19:07.704183Z","id":"6798543a-31a3-4049-95ba-6d73795456b7","private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.108.0/22","updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-04-07T14:19:07.704183Z","id":"31483c49-b16f-40ad-a1b9-d350210f9d92","private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a40::/64","updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1020" + - "1044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:41 GMT + - Mon, 07 Apr 2025 14:19:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d87ba033-ccf7-49f9-a718-b18193a8ac46 + - 3ee01bb4-ff2a-435f-b06a-278d4671d5c8 status: 200 OK code: 200 - duration: 519.476958ms + duration: 795.922451ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/80f5ff95-9406-4917-852f-002c5c885f86 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d5250542-4f0f-42cf-8cf6-da132d987706 method: GET response: proto: HTTP/2.0 @@ -176,18 +176,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1020 + content_length: 1044 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:41.351836Z","dhcp_enabled":true,"id":"80f5ff95-9406-4917-852f-002c5c885f86","name":"pn-with-lb-static","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-24T14:11:41.351836Z","id":"2bf3f556-c327-432f-8ca5-3d671e85c84e","private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-24T14:11:41.351836Z","id":"11986589-3098-4793-b423-0628c18146d4","private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2131::/64","updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-04-07T14:19:07.704183Z","dhcp_enabled":true,"id":"d5250542-4f0f-42cf-8cf6-da132d987706","name":"pn-with-lb-static","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-04-07T14:19:07.704183Z","id":"6798543a-31a3-4049-95ba-6d73795456b7","private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.108.0/22","updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-04-07T14:19:07.704183Z","id":"31483c49-b16f-40ad-a1b9-d350210f9d92","private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a40::/64","updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1020" + - "1044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:41 GMT + - Mon, 07 Apr 2025 14:19:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 444f97ff-aafd-4880-8c1d-1935ab76de4c + - d8dc43dc-e0db-4de2-8ed5-95ccb0f19805 status: 200 OK code: 200 - duration: 19.914708ms + duration: 59.283903ms - id: 4 request: proto: HTTP/1.1 @@ -212,13 +212,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test-lb-with-pn-static-cidr","description":"","ip_id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-lb-with-pn-static-cidr","description":"","ip_id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: @@ -227,18 +227,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 888 + content_length: 915 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002556574Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:42.002556574Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567286722Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:08.567286722Z","zone":"fr-par-1"}' headers: Content-Length: - - "888" + - "915" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:42 GMT + - Mon, 07 Apr 2025 14:19:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26b4ef3b-9b83-4426-b4ec-025db3d97c83 + - 8ffebe70-e349-4b6d-9448-af94d790dc1a status: 200 OK code: 200 - duration: 351.360625ms + duration: 261.543618ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -276,18 +276,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 909 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-01-24T14:11:42.261071Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:42.267455Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:08.567287Z","zone":"fr-par-1"}' headers: Content-Length: - - "1083" + - "909" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:11:42 GMT + - Mon, 07 Apr 2025 14:19:08 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 377bfe6d-70ef-4aeb-bcda-b96c31cc4d3f + - dd46a657-da55-4d26-8a17-b1d86fa676fc status: 200 OK code: 200 - duration: 76.326958ms + duration: 59.045548ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -325,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1111 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:11:44.005445Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:10.292132Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:12 GMT + - Mon, 07 Apr 2025 14:19:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,29 +346,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff810e78-4c45-4227-a29f-bb7321f97515 + - 319d7e9e-0de3-4ffe-a745-3a85dd123c87 status: 200 OK code: 200 - duration: 508.373083ms + duration: 94.526066ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 15 + content_length: 75 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"ipam_ids":[]}' + body: '{"private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","ipam_ids":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a/private-networks/80f5ff95-9406-4917-852f-002c5c885f86/attach + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750/attach-private-network method: POST response: proto: HTTP/2.0 @@ -376,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1299 + content_length: 1338 uncompressed: false - body: '{"created_at":"2025-01-24T14:12:12.999334377Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:11:44.005445Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"},"private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","status":"pending","updated_at":"2025-01-24T14:12:12.999334377Z"}' + body: '{"created_at":"2025-04-07T14:19:39.061937496Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:10.292132Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"},"private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","status":"pending","updated_at":"2025-04-07T14:19:39.061937496Z"}' headers: Content-Length: - - "1299" + - "1338" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:13 GMT + - Mon, 07 Apr 2025 14:19:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e7de5a1-3b96-4b9b-b247-8b369b81be6e + - c16d8568-1f59-4d6f-9ceb-5e3f6c28141c status: 200 OK code: 200 - duration: 402.441667ms + duration: 328.965019ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -425,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1131 + content_length: 1165 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:12.999334Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"},"private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","status":"pending","updated_at":"2025-01-24T14:12:12.999334Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:19:39.061937Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"},"private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","status":"pending","updated_at":"2025-04-07T14:19:39.061937Z"}],"total_count":1}' headers: Content-Length: - - "1131" + - "1165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:13 GMT + - Mon, 07 Apr 2025 14:19:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb4266bb-8393-43c2-bd31-d2ca2007e580 + - 8eb67afa-2188-48aa-8693-da3991b4f09b status: 200 OK code: 200 - duration: 139.016667ms + duration: 118.139236ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -474,18 +474,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1201 + content_length: 1235 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:12.999334Z","dhcp_config":{"ip_id":"a67b7d56-37cd-4c8c-8af1-33d3378936b3"},"ipam_ids":["a67b7d56-37cd-4c8c-8af1-33d3378936b3"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"},"private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","status":"ready","updated_at":"2025-01-24T14:12:20.496331Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:19:39.061937Z","dhcp_config":{"ip_id":"54c7e9c6-3e32-4f07-9aa4-001d5a3912b1"},"ipam_ids":["54c7e9c6-3e32-4f07-9aa4-001d5a3912b1"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"},"private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","status":"ready","updated_at":"2025-04-07T14:19:42.055373Z"}],"total_count":1}' headers: Content-Length: - - "1201" + - "1235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:43 GMT + - Mon, 07 Apr 2025 14:20:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 588dfa90-9e3a-4a66-88d9-567e0c47f36f + - 1a0d16f6-2685-47b3-a82d-13b02e9641a2 status: 200 OK code: 200 - duration: 79.969416ms + duration: 162.957381ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -523,18 +523,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1111 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:19.932555Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:41.749895Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:43 GMT + - Mon, 07 Apr 2025 14:20:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae05fdb6-bb82-4569-ba96-e98352194f74 + - 537b4e3f-997e-40dd-b396-cf4d1ac93490 status: 200 OK code: 200 - duration: 102.859ms + duration: 81.472845ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -572,18 +572,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1111 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:19.932555Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:41.749895Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:43 GMT + - Mon, 07 Apr 2025 14:20:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -593,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac5a5b17-0141-4cb3-a2fd-9d6a92801de8 + - 7b4cc06e-4005-47a4-aa56-4f9793dc6d1c status: 200 OK code: 200 - duration: 96.602375ms + duration: 84.328178ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -621,18 +621,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1201 + content_length: 1235 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:12.999334Z","dhcp_config":{"ip_id":"a67b7d56-37cd-4c8c-8af1-33d3378936b3"},"ipam_ids":["a67b7d56-37cd-4c8c-8af1-33d3378936b3"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"},"private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","status":"ready","updated_at":"2025-01-24T14:12:20.496331Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:19:39.061937Z","dhcp_config":{"ip_id":"54c7e9c6-3e32-4f07-9aa4-001d5a3912b1"},"ipam_ids":["54c7e9c6-3e32-4f07-9aa4-001d5a3912b1"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"},"private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","status":"ready","updated_at":"2025-04-07T14:19:42.055373Z"}],"total_count":1}' headers: Content-Length: - - "1201" + - "1235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:43 GMT + - Mon, 07 Apr 2025 14:20:09 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -642,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab4b04f8-acb8-4007-9ad3-d8f7fb69f62e + - 17e34f0a-3725-4802-8c89-9cf27e6704a5 status: 200 OK code: 200 - duration: 99.764625ms + duration: 149.297361ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -670,18 +670,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1111 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:19.932555Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:41.749895Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:44 GMT + - Mon, 07 Apr 2025 14:20:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13f7f464-817a-47f7-a4de-6e0b5ce3ef7a + - 43229eb2-ae9a-4156-ad0f-dde8c8f2f050 status: 200 OK code: 200 - duration: 77.069959ms + duration: 79.148796ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9821bd5-e65d-48a6-9f19-b64ab68ab6a7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca method: GET response: proto: HTTP/2.0 @@ -719,18 +719,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 330 uncompressed: false - body: '{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "322" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:44 GMT + - Mon, 07 Apr 2025 14:20:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -740,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34e48981-15cf-49ee-8ae9-b50d2e814ebc + - 27207874-0157-4fd0-b873-4eb0a9880e46 status: 200 OK code: 200 - duration: 57.038042ms + duration: 49.530939ms - id: 15 request: proto: HTTP/1.1 @@ -759,8 +759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/80f5ff95-9406-4917-852f-002c5c885f86 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca method: GET response: proto: HTTP/2.0 @@ -768,18 +768,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1020 + content_length: 330 uncompressed: false - body: '{"created_at":"2025-01-24T14:11:41.351836Z","dhcp_enabled":true,"id":"80f5ff95-9406-4917-852f-002c5c885f86","name":"pn-with-lb-static","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-24T14:11:41.351836Z","id":"2bf3f556-c327-432f-8ca5-3d671e85c84e","private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-24T14:11:41.351836Z","id":"11986589-3098-4793-b423-0628c18146d4","private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2131::/64","updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-24T14:11:41.351836Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "1020" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:44 GMT + - Mon, 07 Apr 2025 14:20:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -789,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f51a99e0-e462-4069-97c0-013afc82cc61 + - ee96f053-b01c-43fa-810d-f058cb25dde9 status: 200 OK code: 200 - duration: 26.589333ms + duration: 45.613376ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9821bd5-e65d-48a6-9f19-b64ab68ab6a7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d5250542-4f0f-42cf-8cf6-da132d987706 method: GET response: proto: HTTP/2.0 @@ -817,18 +817,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 1044 uncompressed: false - body: '{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"created_at":"2025-04-07T14:19:07.704183Z","dhcp_enabled":true,"id":"d5250542-4f0f-42cf-8cf6-da132d987706","name":"pn-with-lb-static","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-04-07T14:19:07.704183Z","id":"6798543a-31a3-4049-95ba-6d73795456b7","private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.108.0/22","updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-04-07T14:19:07.704183Z","id":"31483c49-b16f-40ad-a1b9-d350210f9d92","private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a40::/64","updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-04-07T14:19:07.704183Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "322" + - "1044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:44 GMT + - Mon, 07 Apr 2025 14:20:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -838,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d0ff8f3-a7c2-4236-aec6-fd573af9a90b + - c3beb67d-2b06-4a5c-95e4-4df11f338177 status: 200 OK code: 200 - duration: 66.577666ms + duration: 45.514874ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -866,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1111 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:19.932555Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:41.749895Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:44 GMT + - Mon, 07 Apr 2025 14:20:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -887,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df2b20f1-4770-4da6-8560-8e82704d103f + - fd3fd62a-b1ee-4bbb-910a-1bd9f04fea76 status: 200 OK code: 200 - duration: 95.769708ms + duration: 98.529972ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -915,18 +915,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1111 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:19.932555Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:41.749895Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:44 GMT + - Mon, 07 Apr 2025 14:20:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -936,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71f71ebf-65c3-4e20-a1bc-7050a62913cb + - 894285d1-eda4-4909-8a37-4e8c1284d96e status: 200 OK code: 200 - duration: 94.452625ms + duration: 65.249456ms - id: 19 request: proto: HTTP/1.1 @@ -955,8 +955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -964,18 +964,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1201 + content_length: 1235 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:12.999334Z","dhcp_config":{"ip_id":"a67b7d56-37cd-4c8c-8af1-33d3378936b3"},"ipam_ids":["a67b7d56-37cd-4c8c-8af1-33d3378936b3"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"},"private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","status":"ready","updated_at":"2025-01-24T14:12:20.496331Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:19:39.061937Z","dhcp_config":{"ip_id":"54c7e9c6-3e32-4f07-9aa4-001d5a3912b1"},"ipam_ids":["54c7e9c6-3e32-4f07-9aa4-001d5a3912b1"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"},"private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","status":"ready","updated_at":"2025-04-07T14:19:42.055373Z"}],"total_count":1}' headers: Content-Length: - - "1201" + - "1235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:45 GMT + - Mon, 07 Apr 2025 14:20:10 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -985,10 +985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96c0bfa5-ee72-4410-9c71-fd7fb48d08d8 + - f66ae7fe-165b-4bbe-ae71-d4dccf039ddc status: 200 OK code: 200 - duration: 108.740333ms + duration: 126.604974ms - id: 20 request: proto: HTTP/1.1 @@ -1004,8 +1004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -1013,18 +1013,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1111 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:19.932555Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:41.749895Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:45 GMT + - Mon, 07 Apr 2025 14:20:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1034,10 +1034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aec758d-d023-4514-bdc3-168422d371b5 + - ed91b4be-1da7-4b65-a53a-471ced6a0b51 status: 200 OK code: 200 - duration: 140.658375ms + duration: 88.019686ms - id: 21 request: proto: HTTP/1.1 @@ -1053,8 +1053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1062,18 +1062,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1201 + content_length: 1235 uncompressed: false - body: '{"private_network":[{"created_at":"2025-01-24T14:12:12.999334Z","dhcp_config":{"ip_id":"a67b7d56-37cd-4c8c-8af1-33d3378936b3"},"ipam_ids":["a67b7d56-37cd-4c8c-8af1-33d3378936b3"],"lb":{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"},"private_network_id":"80f5ff95-9406-4917-852f-002c5c885f86","status":"ready","updated_at":"2025-01-24T14:12:20.496331Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-04-07T14:19:39.061937Z","dhcp_config":{"ip_id":"54c7e9c6-3e32-4f07-9aa4-001d5a3912b1"},"ipam_ids":["54c7e9c6-3e32-4f07-9aa4-001d5a3912b1"],"lb":{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"},"private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706","status":"ready","updated_at":"2025-04-07T14:19:42.055373Z"}],"total_count":1}' headers: Content-Length: - - "1201" + - "1235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:46 GMT + - Mon, 07 Apr 2025 14:20:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1083,29 +1083,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ae73728-9aad-4a1b-aaa2-84746022547f + - 0d04f0ee-34cd-4f45-890e-2797a3493772 status: 200 OK code: 200 - duration: 94.096208ms + duration: 130.205644ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: '{"private_network_id":"d5250542-4f0f-42cf-8cf6-da132d987706"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a/private-networks/80f5ff95-9406-4917-852f-002c5c885f86/detach + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750/detach-private-network method: POST response: proto: HTTP/2.0 @@ -1122,7 +1122,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:46 GMT + - Mon, 07 Apr 2025 14:20:11 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1132,10 +1132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 522fea33-85fb-4b4f-8c46-7c594e40d694 + - ba15e4c2-0e45-47f6-a189-eab2b83ee16e status: 204 No Content code: 204 - duration: 295.3555ms + duration: 288.706724ms - id: 23 request: proto: HTTP/1.1 @@ -1151,8 +1151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -1160,18 +1160,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1111 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:19.932555Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:11:45.456709Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:41.749895Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:19:11.315718Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:46 GMT + - Mon, 07 Apr 2025 14:20:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1181,10 +1181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6356b2ff-4559-4e26-8669-eb1f73017e77 + - c4ce0657-ff52-4d11-a5da-0ba721c72353 status: 200 OK code: 200 - duration: 92.630584ms + duration: 66.302037ms - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750?release_ip=false method: DELETE response: proto: HTTP/2.0 @@ -1218,7 +1218,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:46 GMT + - Mon, 07 Apr 2025 14:20:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1228,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aa5aa9a-1ccb-4a22-b0d8-985b7226075d + - 81045513-396c-497a-a4b9-6a62395447f0 status: 204 No Content code: 204 - duration: 309.147708ms + duration: 362.37313ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1247,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -1256,18 +1256,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1115 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-01-24T14:11:42.002557Z","description":"","frontend_count":0,"id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","instances":[{"created_at":"2025-01-24T14:09:14.653066Z","id":"c0587f85-e230-41a2-a7df-d24bd287f426","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-01-24T14:12:19.932555Z","zone":"fr-par-1"}],"ip":[{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":"255c0f2e-34ca-444f-9556-04eb3c22b34a","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-01-24T14:12:46.655263Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-04-07T14:19:08.567287Z","description":"","frontend_count":0,"id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","instances":[{"created_at":"2025-04-07T14:13:40.298772Z","id":"af674354-c3fe-40dd-b426-5894f50046e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-04-07T14:19:41.749895Z","zone":"fr-par-1"}],"ip":[{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":"0bb91818-6d62-48ad-a4d9-fa595a2ef750","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-pn-static-cidr","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-04-07T14:20:12.161871Z","zone":"fr-par-1"}' headers: Content-Length: - - "1082" + - "1115" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:12:46 GMT + - Mon, 07 Apr 2025 14:20:12 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1277,10 +1277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71141f2c-8e9f-4319-b7e1-3898290b27db + - 2551cdb9-9104-4505-83eb-2e3ba1f57fc4 status: 200 OK code: 200 - duration: 141.783542ms + duration: 70.038297ms - id: 26 request: proto: HTTP/1.1 @@ -1296,8 +1296,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -1316,7 +1316,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:17 GMT + - Mon, 07 Apr 2025 14:20:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1326,10 +1326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aafe665-4876-4ea9-80a1-1dd3a2d6bc46 + - dab41bac-7e4e-4ad4-bbca-29fe01f30e85 status: 404 Not Found code: 404 - duration: 28.486667ms + duration: 23.856688ms - id: 27 request: proto: HTTP/1.1 @@ -1345,8 +1345,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -1365,7 +1365,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:17 GMT + - Mon, 07 Apr 2025 14:20:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1375,10 +1375,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04abdfec-9828-4ea8-b6ff-8cf5a1a6fdf1 + - be61ffc2-4efe-492a-934b-cea114c24d29 status: 404 Not Found code: 404 - duration: 23.2975ms + duration: 73.172605ms - id: 28 request: proto: HTTP/1.1 @@ -1394,8 +1394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9821bd5-e65d-48a6-9f19-b64ab68ab6a7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca method: GET response: proto: HTTP/2.0 @@ -1403,18 +1403,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 296 uncompressed: false - body: '{"id":"e9821bd5-e65d-48a6-9f19-b64ab68ab6a7","ip_address":"51.159.206.53","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-206-53.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca","ip_address":"51.159.26.117","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-159-26-117.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:17 GMT + - Mon, 07 Apr 2025 14:20:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1424,10 +1424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43404afa-c0db-4388-9b96-f90fe1a9874a + - efb10798-821f-47f8-84c3-aad3725747cc status: 200 OK code: 200 - duration: 64.08925ms + duration: 47.201966ms - id: 29 request: proto: HTTP/1.1 @@ -1443,8 +1443,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/e9821bd5-e65d-48a6-9f19-b64ab68ab6a7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b2e2df2b-b3f0-4eb6-9e17-14e34d2f85ca method: DELETE response: proto: HTTP/2.0 @@ -1461,7 +1461,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:17 GMT + - Mon, 07 Apr 2025 14:20:42 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1471,10 +1471,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cbbf1f5-8960-4cd7-8b23-72405504e608 + - d30928bd-7a83-49ad-ad31-9c5cd24ef22e status: 204 No Content code: 204 - duration: 358.73075ms + duration: 352.227274ms - id: 30 request: proto: HTTP/1.1 @@ -1490,8 +1490,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/80f5ff95-9406-4917-852f-002c5c885f86 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d5250542-4f0f-42cf-8cf6-da132d987706 method: DELETE response: proto: HTTP/2.0 @@ -1508,7 +1508,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:19 GMT + - Mon, 07 Apr 2025 14:20:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1518,10 +1518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dc6658b-0af3-431e-a4c6-0de74361cca3 + - 1b68cc6d-ccea-4e5c-b582-69662876abcb status: 204 No Content code: 204 - duration: 2.672203458s + duration: 3.840076281s - id: 31 request: proto: HTTP/1.1 @@ -1537,8 +1537,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/255c0f2e-34ca-444f-9556-04eb3c22b34a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/0bb91818-6d62-48ad-a4d9-fa595a2ef750 method: GET response: proto: HTTP/2.0 @@ -1557,7 +1557,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 24 Jan 2025 14:13:19 GMT + - Mon, 07 Apr 2025 14:20:46 GMT Server: - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: @@ -1567,7 +1567,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e54d37c-4831-4a05-959a-e7739d600bf7 + - 2bef6cc2-7804-4eb0-af55-3a5617e7faad status: 404 Not Found code: 404 - duration: 37.390666ms + duration: 35.608323ms